Skip to content

Commit

Permalink
[rfw, flutter_markdown] Prepare for removing dart:ui imports. (#5471)
Browse files Browse the repository at this point in the history
See #138881
Fixes parts of #87235
  • Loading branch information
Hixie committed Nov 28, 2023
1 parent c8a28d9 commit e4aaba8
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/flutter_markdown/CHANGELOG.md
@@ -1,6 +1,7 @@
## NEXT

* Updates minimum supported SDK version to Flutter 3.10/Dart 3.0.
* Fixes lint warnings.

## 0.6.18+2

Expand Down
1 change: 1 addition & 0 deletions packages/flutter_markdown/lib/src/builder.dart
Expand Up @@ -2,6 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// ignore: unnecessary_import (see https://github.com/flutter/flutter/pull/138881)
import 'dart:ui';

import 'package:flutter/gestures.dart';
Expand Down
1 change: 1 addition & 0 deletions packages/rfw/CHANGELOG.md
@@ -1,6 +1,7 @@
## NEXT

* Updates minimum supported SDK version to Flutter 3.10/Dart 3.0.
* Fixes lint warnings.

## 1.0.15

Expand Down
1 change: 1 addition & 0 deletions packages/rfw/lib/src/flutter/argument_decoders.dart
Expand Up @@ -9,6 +9,7 @@
// This file is hand-formatted.

import 'dart:math' as math show pi;
// ignore: unnecessary_import (see https://github.com/flutter/flutter/pull/138881)
import 'dart:ui' show FontFeature; // TODO(ianh): https://github.com/flutter/flutter/issues/87235

import 'package:flutter/material.dart';
Expand Down
1 change: 1 addition & 0 deletions packages/rfw/lib/src/flutter/core_widgets.dart
Expand Up @@ -8,6 +8,7 @@

// This file is hand-formatted.

// ignore: unnecessary_import (see https://github.com/flutter/flutter/pull/138881)
import 'dart:ui' show FontFeature;

import 'package:flutter/gestures.dart' show DragStartBehavior;
Expand Down

0 comments on commit e4aaba8

Please sign in to comment.