Adjust padding

This commit is contained in:
Hillel Coren 2021-10-19 16:38:20 +03:00
parent 9d056f8837
commit f8c9b16273
1 changed files with 2 additions and 2 deletions

View File

@ -159,7 +159,7 @@ class _EntityListState extends State<EntityList> {
child: entityList.isEmpty
? HelpText(AppLocalization.of(context).noRecordsFound)
: ScrollableListViewBuilder(
padding: const EdgeInsets.symmetric(vertical: 25),
padding: const EdgeInsets.symmetric(vertical: 20),
separatorBuilder: (context, index) =>
(index == 0 || index == entityList.length)
? SizedBox()
@ -239,7 +239,7 @@ class _EntityListState extends State<EntityList> {
Expanded(
child: SingleChildScrollView(
child: Padding(
padding: const EdgeInsets.symmetric(vertical: 24),
padding: const EdgeInsets.symmetric(vertical: 16),
child: AppPaginatedDataTable(
key: ValueKey(
'__${uiState.filterEntityId}_${uiState.filterEntityType}_${listStateHash}__'),