mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
opt: safearea
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
@@ -94,21 +94,25 @@ class _WhisperDetailPageState
|
||||
),
|
||||
),
|
||||
),
|
||||
body: Column(
|
||||
children: [
|
||||
Expanded(
|
||||
child: Listener(
|
||||
child: Obx(() =>
|
||||
_buildBody(_whisperDetailController.loadingState.value)),
|
||||
onPointerDown: (event) {
|
||||
// Hide panel when touch ListView.
|
||||
hidePanel();
|
||||
},
|
||||
body: SafeArea(
|
||||
top: false,
|
||||
bottom: false,
|
||||
child: Column(
|
||||
children: [
|
||||
Expanded(
|
||||
child: Listener(
|
||||
child: Obx(() =>
|
||||
_buildBody(_whisperDetailController.loadingState.value)),
|
||||
onPointerDown: (event) {
|
||||
// Hide panel when touch ListView.
|
||||
hidePanel();
|
||||
},
|
||||
),
|
||||
),
|
||||
),
|
||||
_buildInputView(),
|
||||
buildPanelContainer(Theme.of(context).colorScheme.onInverseSurface),
|
||||
],
|
||||
_buildInputView(),
|
||||
buildPanelContainer(Theme.of(context).colorScheme.onInverseSurface),
|
||||
],
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user