From d36e2539735ec6576b0877a9fee4243d69d8471a Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Mon, 29 May 2023 13:51:51 +0300 Subject: [PATCH] Pull to refresh doesn't work in mobile app if there isn't enough entries #459 --- lib/ui/app/tables/entity_list.dart | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/ui/app/tables/entity_list.dart b/lib/ui/app/tables/entity_list.dart index 4eda58455..09dc4c664 100644 --- a/lib/ui/app/tables/entity_list.dart +++ b/lib/ui/app/tables/entity_list.dart @@ -159,8 +159,7 @@ class _EntityListState extends State { entityType: state.uiState.filterEntityType), onClearPressed: () => store.dispatch(ClearEntityFilter()), ), - Flexible( - fit: FlexFit.loose, + Expanded( child: entityList.isEmpty ? HelpText( AppLocalization.of(context).clickPlusToCreateRecord)