mirror of
https://github.com/JGeek00/adguard-home-manager.git
synced 2025-05-03 20:04:48 +00:00
Fixed settings sliver list
This commit is contained in:
parent
6f3ba647f4
commit
229d329936
1 changed files with 162 additions and 149 deletions
|
@ -129,7 +129,16 @@ class SettingsWidget extends StatelessWidget {
|
|||
)
|
||||
)
|
||||
],
|
||||
body: ListView(
|
||||
body: SafeArea(
|
||||
top: false,
|
||||
bottom: false,
|
||||
child: Builder(
|
||||
builder: (context) => CustomScrollView(
|
||||
slivers: [
|
||||
SliverOverlapInjector(
|
||||
handle: NestedScrollView.sliverOverlapAbsorberHandleFor(context),
|
||||
),
|
||||
SliverList.list(
|
||||
children: [
|
||||
if (
|
||||
serversProvider.selectedServer != null &&
|
||||
|
@ -281,6 +290,10 @@ class SettingsWidget extends StatelessWidget {
|
|||
),
|
||||
)
|
||||
],
|
||||
)
|
||||
],
|
||||
)
|
||||
),
|
||||
),
|
||||
)
|
||||
);
|
||||
|
|
Loading…
Add table
Reference in a new issue