Skip to content

Instantly share code, notes, and snippets.

@hitherejoe
Created December 17, 2018 14:34
Show Gist options
  • Save hitherejoe/48ccf31c5c18b28b9ff41bb7aa98de49 to your computer and use it in GitHub Desktop.
Save hitherejoe/48ccf31c5c18b28b9ff41bb7aa98de49 to your computer and use it in GitHub Desktop.
void main() => runApp(new VoiceApp());
class VoiceApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
...
return MaterialApp(
title: Strings.APP_NAME,
theme: ThemeData(
brightness: Brightness.light,
primaryColor: Colors.white,
accentColor: VoiceTheme.light_orange,
primaryColorDark: VoiceTheme.blaze_orange,
),
home: Dashboard());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment