wrap settings category in safearea
This commit is contained in:
parent
8f3f9fbef1
commit
5df975f607
1 changed files with 19 additions and 17 deletions
|
|
@ -51,7 +51,8 @@ class SettingsCategoryPage extends HookConsumerWidget {
|
|||
appBar: AppBar(
|
||||
title: Text(sections.values.flattenedToList[index].title),
|
||||
),
|
||||
body: SuperListView(
|
||||
body: SafeArea(
|
||||
child: SuperListView(
|
||||
controller: scrollController,
|
||||
listController: listController.value,
|
||||
padding: .symmetric(vertical: 12, horizontal: 8),
|
||||
|
|
@ -72,6 +73,7 @@ class SettingsCategoryPage extends HookConsumerWidget {
|
|||
.toList(),
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue