mirror of
https://github.com/JGeek00/adguard-home-manager.git
synced 2025-05-14 05:52:51 +00:00
Added edit custom rules
This commit is contained in:
parent
2fca44f195
commit
c150d2ba23
10 changed files with 789 additions and 436 deletions
|
@ -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!)
|
||||
),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue