Skip to content

Commit

Permalink
Update flutter version in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
jb3rndt committed Oct 25, 2024
1 parent 657cdae commit e2c60c7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
workflow_call:

env:
FLUTTER_VERSION: "3.19.3"
FLUTTER_VERSION: "3.24.4"

jobs:
tests:
Expand Down
4 changes: 2 additions & 2 deletions example/lib/interactive_example.dart
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ class _InteractiveExampleState extends State<InteractiveExample> {
resizeToAvoidBottomInset: settings.resizeToAvoidBottomInset,
stateManagement: settings.stateManagement,
hideNavigationBar: settings.hideNavBar,
popAllScreensOnTapOfSelectedTab:
settings.popAllScreensOnTapOfSelectedTab,
hideOnScrollVelocity: settings.hideOnScrollVelocity,
selectedTabPressConfig: settings.selectedTabPressConfig,
);
}
2 changes: 2 additions & 0 deletions example/lib/settings.dart
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ class Settings {
bool stateManagement = true;
bool handleAndroidBackButtonPress = true;
bool popAllScreensOnTapOfSelectedTab = true;
int hideOnScrollVelocity = 200;
bool avoidBottomPadding = true;
SelectedTabPressConfig selectedTabPressConfig = SelectedTabPressConfig();
Color navBarColor = Colors.white;
NavBarBuilder get navBarBuilder => navBarStyles[navBarStyle]!;
String navBarStyle = "Style 1";
Expand Down

0 comments on commit e2c60c7

Please sign in to comment.