This commit is contained in:
2021-01-23 19:28:26 -05:00
parent fec7db1890
commit 4378a2927b
51 changed files with 992 additions and 245 deletions

View File

@@ -0,0 +1,13 @@
import 'package:flutter/material.dart';
ThemeData appTheme() {
return ThemeData(
primaryColor: Colors.white,
accentColor: Colors.orange,
hintColor: Colors.white,
dividerColor: Colors.white,
buttonColor: Colors.white,
scaffoldBackgroundColor: Colors.blue,
canvasColor: Colors.blue,
);
}