-
Notifications
You must be signed in to change notification settings - Fork 11
chore!: upgrade to Flutter 3.32.0 #98
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
WalkthroughThe updates standardize and upgrade environment constraints, dependency versions, and analysis options across the project and its example. The Changes
Sequence Diagram(s)sequenceDiagram
participant TestSuite
participant MockNavigator
participant _MockNavigatorState
TestSuite->>MockNavigator: set up stub for removeRoute<T>(route, [result])
TestSuite->>TestSuite: pump widget with TextButton(onPressed: Navigator.of(context).removeRoute(testRoute))
TestSuite->>TestSuite: tap TextButton
TestSuite->>_MockNavigatorState: removeRoute(testRoute)
_MockNavigatorState->>MockNavigator: forward removeRoute<T>(route, [result])
TestSuite->>MockNavigator: verify removeRoute<T>(testRoute) called once
Possibly related issues
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (9)
🔇 Additional comments (15)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
|
@marcossevilla, I would like to honor @Conrad598 as a contributor to this upgrade given his efforts on #97. Could you make a commit that adds @Conrad598 as a contributor? There is a way to do this without needing his input, you can find his Git email by looking at a |
Co-authored-by: Conrad Gende <conradg@wilcoxind.com>
Migration details
Flutter 3.32.0 changed the signature of Navigator.removeRouteBelow which caused a compile time error flutter/flutter#157725.
Status
READY
Description
Closes #96.
Type of Change
Summary by CodeRabbit
Dependency Updates
matcher,equatable,flutter_bloc, andvery_good_analysis.Bug Fixes
Refactor
Tests
.removeRoutemethod.Chores