fix padding

This commit is contained in:
NicKoehler 2023-05-24 20:26:41 +02:00
parent cb42edd789
commit 349b54b4b4
No known key found for this signature in database
GPG Key ID: 0EC502B679A11DD1

View File

@ -47,7 +47,7 @@ class ChatPage extends StatelessWidget implements PageShape {
value: chatModel,
child: Container(
color: Theme.of(context).scaffoldBackgroundColor,
padding: EdgeInsets.only(top: 14.0, bottom: 14.0, left: 14.0),
padding: EdgeInsets.all(14.0),
child: Consumer<ChatModel>(
builder: (context, chatModel, child) {
final currentUser = chatModel.currentUser;