Skip to content

Commit

Permalink
chore: upgrade to flutter 3.16
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasXu0 committed Dec 7, 2023
1 parent 4995d21 commit 30955dc
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- uses: subosito/flutter-action@v2
with:
channel: "stable"
flutter-version: "3.13.9"
flutter-version: "3.16.2"
cache: true

- name: Run tests
Expand Down
3 changes: 3 additions & 0 deletions example/lib/pages/mobile_editor.dart
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,9 @@ class _MobileEditorState extends State<MobileEditor> {
onPaste: () => pasteCommand.execute(editorState),
onSelectAll: () => selectAllCommand.execute(editorState),
onLiveTextInput: null,
onLookUp: null,
onSearchWeb: null,
onShare: null,
anchors: TextSelectionToolbarAnchors(
primaryAnchor: anchor,
),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ class _BulletedListIcon extends StatelessWidget {
child: Text(
icon,
style: textStyle,
textScaleFactor: 0.5,
textScaler: const TextScaler.linear(0.5),
),
),
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ class PositionedList extends StatefulWidget {
/// See [ScrollView.reverse].
final bool reverse;

/// {@template flutter.widgets.scroll_view.shrinkWrap}
/// Whether the extent of the scroll view in the [scrollDirection] should be
/// determined by the contents being viewed.
///
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,6 @@ class ScrollablePositionedList extends StatefulWidget {
/// See [ScrollView.reverse].
final bool reverse;

/// {@template flutter.widgets.scroll_view.shrinkWrap}
/// Whether the extent of the scroll view in the [scrollDirection] should be
/// determined by the contents being viewed.
///
Expand Down

0 comments on commit 30955dc

Please sign in to comment.