refactor: Replace user bottom sheet with menu and small dialog

Signed-off-by: Krille <c.kussowski@famedly.com>
This commit is contained in:
Krille 2025-04-10 18:27:16 +02:00
commit a12c48fae6
No known key found for this signature in database
GPG key ID: E067ECD60F1A0652
21 changed files with 734 additions and 851 deletions

View file

@ -69,12 +69,15 @@ abstract class FluffyThemes {
selectionColor: colorScheme.onSurface.withAlpha(128),
selectionHandleColor: colorScheme.secondary,
),
inputDecorationTheme: InputDecorationTheme(
border: OutlineInputBorder(
borderRadius: BorderRadius.circular(AppConfig.borderRadius),
inputDecorationTheme: const InputDecorationTheme(
border: UnderlineInputBorder(
borderRadius: BorderRadius.only(
topRight: Radius.circular(AppConfig.borderRadius),
topLeft: Radius.circular(AppConfig.borderRadius),
),
),
contentPadding: const EdgeInsets.all(12),
filled: false,
//contentPadding: EdgeInsets.all(12),
filled: true,
),
appBarTheme: AppBarTheme(
toolbarHeight: isColumnMode ? 72 : 56,
@ -130,6 +133,7 @@ extension BubbleColorTheme on ThemeData {
Color get bubbleColor => brightness == Brightness.light
? colorScheme.primary
: colorScheme.primaryContainer;
Color get onBubbleColor => brightness == Brightness.light
? colorScheme.onPrimary
: colorScheme.onPrimaryContainer;