Rise fabs when snackbar is shown
This commit is contained in:
19
lib/models/providers_models/app_status.model.dart
Normal file
19
lib/models/providers_models/app_status.model.dart
Normal 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,
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user