Created
March 11, 2020 15:53
-
-
Save plateaukao/f7eeac1d3f7f8192fe06751b2c4075c4 to your computer and use it in GitHub Desktop.
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
final kBaseThemeData = ThemeData( | |
primaryColor: Color.fromRGBO(58, 66, 86, 1.0), | |
backgroundColor: Color.fromRGBO(58, 66, 86, 1.0) | |
); | |
class _MyAppState extends State<MyApp> { | |
int _currentIndex = 0; | |
@override | |
Widget build(BuildContext context) { | |
return MaterialApp( | |
theme: kBaseThemeData, | |
home: Scaffold(...) | |
... | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment