opt: safearea

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-04-24 11:35:19 +08:00
parent 039e1696dd
commit 8c7001c801
8 changed files with 211 additions and 169 deletions

View File

@@ -277,12 +277,14 @@ class _LivePageState extends CommonPageState<LivePage, LiveController>
() => Text('${controller.liveCount.value}人正在直播'),
),
),
body: CustomScrollView(
slivers: [
Obx(
() => _buildFollowListBody(controller.followListState.value),
),
],
body: SafeArea(
top: false,
bottom: false,
child: CustomScrollView(
slivers: [
Obx(() => _buildFollowListBody(controller.followListState.value)),
],
),
),
);