Last active
September 16, 2019 04:58
-
-
Save matthew-carroll/653fbec4f58fbd3d5cc5213774ce2d02 to your computer and use it in GitHub Desktop.
Dark Theme
This file contains hidden or 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
MaterialApp( | |
theme: ThemeData( | |
brightness: Brightness.light, | |
primaryColor: Colors.red, | |
), | |
darkTheme: ThemeData( | |
brightness: Brightness.dark, | |
), | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment