mirror of
https://github.com/samsonjs/immich.git
synced 2026-04-03 10:45:52 +00:00
fix(mobile): reduce stutter/jank on search pages (#18363)
fix: reduce stutter/jank on search pages
This commit is contained in:
parent
230c286b97
commit
9e47093501
3 changed files with 3 additions and 1 deletions
|
|
@ -269,6 +269,7 @@ class AlbumsPage extends HookConsumerWidget {
|
|||
],
|
||||
),
|
||||
),
|
||||
resizeToAvoidBottomInset: false,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -167,6 +167,7 @@ class TabControllerPage extends HookConsumerWidget {
|
|||
onPopInvokedWithResult: (didPop, _) =>
|
||||
!didPop ? tabsRouter.setActiveIndex(0) : null,
|
||||
child: Scaffold(
|
||||
resizeToAvoidBottomInset: false,
|
||||
body: isScreenLandscape
|
||||
? Row(
|
||||
children: [
|
||||
|
|
|
|||
|
|
@ -523,7 +523,7 @@ class SearchPage extends HookConsumerWidget {
|
|||
}
|
||||
|
||||
return Scaffold(
|
||||
resizeToAvoidBottomInset: true,
|
||||
resizeToAvoidBottomInset: false,
|
||||
appBar: AppBar(
|
||||
automaticallyImplyLeading: true,
|
||||
actions: [
|
||||
|
|
|
|||
Loading…
Reference in a new issue