From fb2d9348ee7fcc628b586120fbedc73c87368cd3 Mon Sep 17 00:00:00 2001 From: camsim99 Date: Thu, 10 Nov 2022 10:26:42 -0800 Subject: [PATCH 1/3] Roll flutter --- .ci/flutter_master.version | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/flutter_master.version b/.ci/flutter_master.version index e8ed6b6b723..a1e93eaf59f 100644 --- a/.ci/flutter_master.version +++ b/.ci/flutter_master.version @@ -1 +1 @@ -d3dcd7d532b61f43118ab8031bf732aea4a7a9f5 +b31b9dc05f998eefeb3636564e416417329004e0 From 9c5d440c16e620022178bd2e1dcfc1e22acef145 Mon Sep 17 00:00:00 2001 From: camsim99 Date: Thu, 10 Nov 2022 10:38:41 -0800 Subject: [PATCH 2/3] Fix analyze --- .../test/src/test_flutter_command_runner.dart | 5 ----- packages/go_router/example/lib/others/state_restoration.dart | 2 +- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/packages/flutter_migrate/test/src/test_flutter_command_runner.dart b/packages/flutter_migrate/test/src/test_flutter_command_runner.dart index 8e4d36ba412..f07dccc3319 100644 --- a/packages/flutter_migrate/test/src/test_flutter_command_runner.dart +++ b/packages/flutter_migrate/test/src/test_flutter_command_runner.dart @@ -32,9 +32,4 @@ class TestCommandRunner extends CommandRunner { ' flutter run [options]\n' ' Run your Flutter application on an attached device or in an emulator.', ); - - @override - Future run(Iterable args) { - return super.run(args); - } } diff --git a/packages/go_router/example/lib/others/state_restoration.dart b/packages/go_router/example/lib/others/state_restoration.dart index 5c6016f4f53..787088bab93 100644 --- a/packages/go_router/example/lib/others/state_restoration.dart +++ b/packages/go_router/example/lib/others/state_restoration.dart @@ -27,7 +27,7 @@ class _AppState extends State with RestorationMixin { @override void restoreState(RestorationBucket? oldBucket, bool initialRestore) { - // todo: implement restoreState for you app + // Implement restoreState for you app } @override From e55ad27e12b1f74ceb6d64cbe6441f31709e6da9 Mon Sep 17 00:00:00 2001 From: Camille Simon <43054281+camsim99@users.noreply.github.com> Date: Thu, 10 Nov 2022 10:44:46 -0800 Subject: [PATCH 3/3] Update packages/go_router/example/lib/others/state_restoration.dart Co-authored-by: chunhtai <47866232+chunhtai@users.noreply.github.com> --- packages/go_router/example/lib/others/state_restoration.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/go_router/example/lib/others/state_restoration.dart b/packages/go_router/example/lib/others/state_restoration.dart index 787088bab93..03bfd886051 100644 --- a/packages/go_router/example/lib/others/state_restoration.dart +++ b/packages/go_router/example/lib/others/state_restoration.dart @@ -27,7 +27,7 @@ class _AppState extends State with RestorationMixin { @override void restoreState(RestorationBucket? oldBucket, bool initialRestore) { - // Implement restoreState for you app + // Implement restoreState for your app } @override