Skip to content

Instantly share code, notes, and snippets.

@matthew-carroll
Last active September 16, 2019 04:58
Show Gist options
  • Save matthew-carroll/653fbec4f58fbd3d5cc5213774ce2d02 to your computer and use it in GitHub Desktop.
Save matthew-carroll/653fbec4f58fbd3d5cc5213774ce2d02 to your computer and use it in GitHub Desktop.
Dark Theme
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