Skip to content

Commit abdfe61

Browse files
authoredJun 9, 2022
Ignore upcoming warnings (flutter#5939)
1 parent 5cfd70d commit abdfe61

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed
 

‎packages/url_launcher/url_launcher/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## NEXT
2+
3+
* Ignores unnecessary import warnings in preparation for [upcoming Flutter changes](https://github.com/flutter/flutter/pull/105648).
4+
15
## 6.1.3
26

37
* Updates README section about query permissions to better reflect changes to

‎packages/url_launcher/url_launcher/test/src/legacy_api_test.dart

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
// Use of this source code is governed by a BSD-style license that can be
33
// found in the LICENSE file.
44

5-
import 'dart:ui';
5+
// TODO(a14n): remove this import once Flutter 3.1 or later reaches stable (including flutter/flutter#105648)
6+
// ignore: unnecessary_import
7+
import 'dart:ui' show Brightness;
68

79
import 'package:flutter/foundation.dart';
810
import 'package:flutter/services.dart' show PlatformException;

0 commit comments

Comments
 (0)
Please sign in to comment.