Added edit custom rules

This commit is contained in:
Juan Gilsanz Polo 2024-02-04 21:23:45 +01:00
parent 2fca44f195
commit c150d2ba23
10 changed files with 789 additions and 436 deletions

View file

@ -17,6 +17,7 @@ class CustomTabContentList extends StatelessWidget {
final bool? fabVisible;
final bool? noSliver;
final EdgeInsets? listPadding;
final double? heightFabHidden;
const CustomTabContentList({
super.key,
@ -31,7 +32,8 @@ class CustomTabContentList extends StatelessWidget {
this.fab,
this.fabVisible,
this.noSliver,
this.listPadding
this.listPadding,
this.heightFabHidden,
});
@override
@ -150,7 +152,7 @@ class CustomTabContentList extends StatelessWidget {
bottom: fabVisible != null && fabVisible == true ?
appConfigProvider.showingSnackbar
? 90 : 20
: -90,
: (heightFabHidden ?? -90),
right: 20,
child: SafeArea(child: fab!)
),