wrap settings category in safearea

This commit is contained in:
Henry Hiles 2026-07-19 00:30:41 -04:00
commit 5df975f607
Signed by: Henry-Hiles
SSH key fingerprint: SHA256:VKQUdS31Q90KvX7EkKMHMBpUspcmItAh86a+v7PGiIs

View file

@ -51,7 +51,8 @@ class SettingsCategoryPage extends HookConsumerWidget {
appBar: AppBar( appBar: AppBar(
title: Text(sections.values.flattenedToList[index].title), title: Text(sections.values.flattenedToList[index].title),
), ),
body: SuperListView( body: SafeArea(
child: SuperListView(
controller: scrollController, controller: scrollController,
listController: listController.value, listController: listController.value,
padding: .symmetric(vertical: 12, horizontal: 8), padding: .symmetric(vertical: 12, horizontal: 8),
@ -72,6 +73,7 @@ class SettingsCategoryPage extends HookConsumerWidget {
.toList(), .toList(),
), ),
), ),
),
); );
} }
} }