1
0
mirror of https://github.com/immich-app/immich.git synced 2025-08-08 23:07:06 +02:00

fix(mobile): reduce stutter/jank on search pages (#18363)

fix: reduce stutter/jank on search pages
This commit is contained in:
Saschl
2025-05-19 16:24:58 +02:00
committed by GitHub
parent 230c286b97
commit 9e47093501
3 changed files with 3 additions and 1 deletions

View File

@ -269,6 +269,7 @@ class AlbumsPage extends HookConsumerWidget {
], ],
), ),
), ),
resizeToAvoidBottomInset: false,
); );
} }
} }

View File

@ -167,6 +167,7 @@ class TabControllerPage extends HookConsumerWidget {
onPopInvokedWithResult: (didPop, _) => onPopInvokedWithResult: (didPop, _) =>
!didPop ? tabsRouter.setActiveIndex(0) : null, !didPop ? tabsRouter.setActiveIndex(0) : null,
child: Scaffold( child: Scaffold(
resizeToAvoidBottomInset: false,
body: isScreenLandscape body: isScreenLandscape
? Row( ? Row(
children: [ children: [

View File

@ -523,7 +523,7 @@ class SearchPage extends HookConsumerWidget {
} }
return Scaffold( return Scaffold(
resizeToAvoidBottomInset: true, resizeToAvoidBottomInset: false,
appBar: AppBar( appBar: AppBar(
automaticallyImplyLeading: true, automaticallyImplyLeading: true,
actions: [ actions: [