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