Rise fabs when snackbar is shown

This commit is contained in:
Juan Gilsanz Polo
2024-02-26 11:15:38 +01:00
parent e127f00762
commit 8785334c25
23 changed files with 371 additions and 264 deletions

View File

@@ -0,0 +1,19 @@
import 'package:linkdy/constants/enums.dart';
class AppStatusModel {
SelectedTheme selectedTheme;
bool supportsDynamicTheme;
bool useDynamicTheme;
int selectedColor;
bool useInAppBrowser;
bool showFavicon;
AppStatusModel({
this.selectedTheme = SelectedTheme.system,
this.supportsDynamicTheme = false,
this.useDynamicTheme = true,
this.selectedColor = 0,
this.useInAppBrowser = true,
this.showFavicon = true,
});
}

View File

@@ -0,0 +1,7 @@
class SnackbarStatusModel {
bool visible;
SnackbarStatusModel({
this.visible = false,
});
}