File upload ui, creating folders, automatic reload

This commit is contained in:
2023-05-29 16:07:05 +02:00
parent fb539fb5d9
commit e8e6fd16f3
6 changed files with 284 additions and 102 deletions

View File

@ -13,7 +13,7 @@ class DarkAppTheme {
surface: Colors.black,
onSurface: Colors.white,
primary: Colors.black,
primary: Colors.white,
onPrimary: Colors.white,
secondary: Colors.grey,
@ -34,6 +34,12 @@ class DarkAppTheme {
progressIndicatorTheme: const ProgressIndicatorThemeData(
color: marianumRed,
),
iconButtonTheme: IconButtonThemeData(
style: ButtonStyle(
textStyle: MaterialStateProperty.all(const TextStyle(color: Colors.white)),
backgroundColor: MaterialStateProperty.all(Colors.white),
)
),
);
}