0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2025-01-07 00:50:23 -05:00

remove safe area for better ui

This commit is contained in:
Alex Tran 2022-02-03 22:16:12 -06:00
parent 0d8fddf537
commit 13525d2330

View file

@ -104,8 +104,7 @@ class HomePage extends HookConsumerWidget {
}
}
return SafeArea(
child: DraggableScrollbar.semicircle(
return DraggableScrollbar.semicircle(
// labelTextBuilder: (offset) {
// final int currentItem = _scrollController.hasClients
// ? (_scrollController.offset / _scrollController.position.maxScrollExtent * imageGridGroup.length)
@ -130,7 +129,6 @@ class HomePage extends HookConsumerWidget {
...imageGridGroup,
],
),
),
);
}