Created
August 12, 2019 20:28
-
-
Save valterh4ck3r/89ceaa2161c0aed06954d4c2d2f1d1eb to your computer and use it in GitHub Desktop.
Change Navigation Bar Color Flutter
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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