Skip to content
Snippets Groups Projects
Commit 221a36fb authored by vjrj's avatar vjrj
Browse files

Minor UI fix in contact page

parent 4cc4dded
No related branches found
No related tags found
No related merge requests found
...@@ -57,6 +57,7 @@ class _ContactsPageState extends State<ContactsPage> { ...@@ -57,6 +57,7 @@ class _ContactsPageState extends State<ContactsPage> {
_contactsCubit.filterContacts(query); _contactsCubit.filterContacts(query);
}, },
), ),
const SizedBox(height: 20),
if (state.filteredContacts.isEmpty) if (state.filteredContacts.isEmpty)
const NoElements(text: 'no_contacts') const NoElements(text: 'no_contacts')
else else
...@@ -67,7 +68,7 @@ class _ContactsPageState extends State<ContactsPage> { ...@@ -67,7 +68,7 @@ class _ContactsPageState extends State<ContactsPage> {
final Contact contact = state.filteredContacts[index]; final Contact contact = state.filteredContacts[index];
return Slidable( return Slidable(
// Specify a key if the Slidable is dismissible. // Specify a key if the Slidable is dismissible.
key: const ValueKey<int>(0), key: ValueKey<int>(index),
// The start action pane is the one at the left or the top side. // The start action pane is the one at the left or the top side.
startActionPane: ActionPane( startActionPane: ActionPane(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment