Skip to content

Instantly share code, notes, and snippets.

@Vanethos
Created January 13, 2020 08:19
Show Gist options
  • Save Vanethos/73506707ee8bf9bb5c91a9b907782918 to your computer and use it in GitHub Desktop.
Save Vanethos/73506707ee8bf9bb5c91a9b907782918 to your computer and use it in GitHub Desktop.
class MyApp extends StatelessWidget {
Config _config;
MyApp(this._config);
@override
Widget build(BuildContext context) {
return MaterialApp(
title: _config.name,
theme: ThemeData(
primarySwatch: Colors.blue,
primaryColor: _config.appColor
),
home: MyHomePage(),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment