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,7 @@
class SnackbarStatusModel {
bool visible;
SnackbarStatusModel({
this.visible = false,
});
}