mirror of
https://github.com/JGeek00/adguard-home-manager.git
synced 2025-06-05 06:10:17 +00:00
Fix bottom padding top items list
This commit is contained in:
parent
9eb200f5da
commit
b223076dae
1 changed files with 13 additions and 10 deletions
|
@ -187,16 +187,19 @@ class _TopItemsScreenState extends State<TopItemsScreen> {
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
if (sortedValues.isNotEmpty) SliverList.builder(
|
if (sortedValues.isNotEmpty) SliverPadding(
|
||||||
itemCount: sortedValues.length,
|
padding: EdgeInsets.only(bottom: MediaQuery.of(context).viewPadding.bottom),
|
||||||
itemBuilder: (context, index) => _Item(
|
sliver: SliverList.builder(
|
||||||
data: sortedValues[index],
|
itemCount: sortedValues.length,
|
||||||
isClient: widget.isClient,
|
itemBuilder: (context, index) => _Item(
|
||||||
options: widget.options,
|
data: sortedValues[index],
|
||||||
total: total,
|
isClient: widget.isClient,
|
||||||
withProgressBar: widget.withProgressBar,
|
options: widget.options,
|
||||||
onTapEntry: widget.onTapEntry,
|
total: total,
|
||||||
buildValue: widget.buildValue,
|
withProgressBar: widget.withProgressBar,
|
||||||
|
onTapEntry: widget.onTapEntry,
|
||||||
|
buildValue: widget.buildValue,
|
||||||
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue