We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5cfd70d commit abdfe61Copy full SHA for abdfe61
packages/url_launcher/url_launcher/CHANGELOG.md
@@ -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
5
## 6.1.3
6
7
* Updates README section about query permissions to better reflect changes to
packages/url_launcher/url_launcher/test/src/legacy_api_test.dart
@@ -2,7 +2,9 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-import 'dart:ui';
+// TODO(a14n): remove this import once Flutter 3.1 or later reaches stable (including flutter/flutter#105648)
+// ignore: unnecessary_import
+import 'dart:ui' show Brightness;
8
9
import 'package:flutter/foundation.dart';
10
import 'package:flutter/services.dart' show PlatformException;
0 commit comments