mirror of
https://github.com/JGeek00/adguard-home-manager.git
synced 2025-05-04 12:24:47 +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: [
|
children: [
|
||||||
if (
|
if (
|
||||||
serversProvider.selectedServer != null &&
|
serversProvider.selectedServer != null &&
|
||||||
|
@ -281,6 +290,10 @@ class SettingsWidget extends StatelessWidget {
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
],
|
],
|
||||||
|
)
|
||||||
|
],
|
||||||
|
)
|
||||||
|
),
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue