loading state and error handling refactor

This commit is contained in:
2026-05-06 10:11:45 +02:00
parent 2c376afd91
commit 4b1d4379a0
48 changed files with 1377 additions and 354 deletions
+11
View File
@@ -2,6 +2,17 @@ import 'package:flutter/material.dart';
import '../widget/dropdown_display.dart';
class AppSpacing {
static const double xs = 4;
static const double sm = 8;
static const double md = 16;
static const double lg = 24;
static const double xl = 40;
}
TextStyle inputErrorStyle(BuildContext context) =>
TextStyle(color: Theme.of(context).colorScheme.error);
class AppTheme {
static DropdownDisplay getDisplayOptions(ThemeMode theme) {
switch(theme) {