Skip to content

Instantly share code, notes, and snippets.

@valterh4ck3r
Created August 12, 2019 20:28
Show Gist options
  • Save valterh4ck3r/89ceaa2161c0aed06954d4c2d2f1d1eb to your computer and use it in GitHub Desktop.
Save valterh4ck3r/89ceaa2161c0aed06954d4c2d2f1d1eb to your computer and use it in GitHub Desktop.
Change Navigation Bar Color Flutter
var mySystemTheme = SystemUiOverlayStyle.dark
.copyWith(systemNavigationBarColor: Colors.red);
SystemChrome.setSystemUIOverlayStyle(mySystemTheme);
return MaterialApp(
debugShowCheckedModeBanner: false,
home: InitScreen(),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment