-
-
Save hitherejoe/48ccf31c5c18b28b9ff41bb7aa98de49 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
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