Skip to content

Commit

Permalink
dart format
Browse files Browse the repository at this point in the history
  • Loading branch information
herzhenr committed Jun 14, 2023
1 parent 6d69279 commit a85a692
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,12 @@ class _MyHomePageState extends State<MyHomePage> {
return AnnotatedRegion<SystemUiOverlayStyle>(
value: SystemUiOverlayStyle(
statusBarColor: Colors.transparent, //top status bar
systemNavigationBarColor: Theme.of(context).colorScheme.surfaceVariant, // navigation bar color, the one Im looking for
systemNavigationBarColor: Theme.of(context)
.colorScheme
.surfaceVariant, // navigation bar color, the one Im looking for
statusBarIconBrightness: Brightness.dark, // status bar icons' color
systemNavigationBarIconBrightness:
Brightness.dark, //navigation bar icons' color
Brightness.dark, //navigation bar icons' color
),
child: Scaffold(
body: screens[selectedNavigationIndex],
Expand Down

0 comments on commit a85a692

Please sign in to comment.