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,7 +187,9 @@ class _TopItemsScreenState extends State<TopItemsScreen> {
|
|||
),
|
||||
),
|
||||
),
|
||||
if (sortedValues.isNotEmpty) SliverList.builder(
|
||||
if (sortedValues.isNotEmpty) SliverPadding(
|
||||
padding: EdgeInsets.only(bottom: MediaQuery.of(context).viewPadding.bottom),
|
||||
sliver: SliverList.builder(
|
||||
itemCount: sortedValues.length,
|
||||
itemBuilder: (context, index) => _Item(
|
||||
data: sortedValues[index],
|
||||
|
@ -199,6 +201,7 @@ class _TopItemsScreenState extends State<TopItemsScreen> {
|
|||
buildValue: widget.buildValue,
|
||||
),
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue