1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-10-23 06:53:23 +00:00

Add missing padding

This commit is contained in:
Pierre HUBERT 2020-05-13 18:13:28 +02:00
parent 4c11aa9753
commit 21d844b2ba

View File

@ -50,8 +50,11 @@ class _CustomEmojisAccountSettingsState
}
Widget _buildSettings() {
return Stack(
return Padding(
padding: const EdgeInsets.all(8.0),
child: Stack(
children: [_buildList(), _buildAddButton()],
),
);
}