Base Flutter App

This commit is contained in:
2021-01-06 16:12:32 -05:00
parent 24c4adf910
commit f59a5c06ba
48 changed files with 1566 additions and 185 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.black,
canvasColor: Colors.black,
);
}