getTheme method
The theme to use for the app.
By default it uses a blue colored theme.
Implementation
ThemeData getTheme() {
return ThemeData(
primarySwatch: Colors.blue,
);
}
The theme to use for the app.
By default it uses a blue colored theme.
ThemeData getTheme() {
return ThemeData(
primarySwatch: Colors.blue,
);
}