add login

This commit is contained in:
jyuesong
2022-01-12 15:45:52 +08:00
parent 9f7164db48
commit 05e4fd6f66
14 changed files with 483 additions and 12 deletions

View File

@@ -16,5 +16,9 @@ class ThemeViewModel extends ChangeNotifier {
}
}
ThemeData darkTheme = ThemeData.dark().copyWith();
ThemeData lightTheme = ThemeData.light().copyWith();
ThemeData darkTheme = ThemeData.dark().copyWith(
primaryColor: Color(0xffffffff),
);
ThemeData lightTheme = ThemeData.light().copyWith(
primaryColor: Color(0xFF0F77FE),
);