Skip to content

Commit aa6c864

Browse files
authored
Ignore upcoming warnings (#5939)
1 parent 2be688d commit aa6c864

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

packages/url_launcher/url_launcher/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
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

Lines changed: 3 additions & 1 deletion
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)