chore: Follow up paddings

pull/764/head
Krille 11 months ago
parent 68aa2250f2
commit 1be21e6c12
No known key found for this signature in database
GPG Key ID: E067ECD60F1A0652

@ -44,7 +44,7 @@ class ChatEventList extends StatelessWidget {
child: ListView.custom( child: ListView.custom(
padding: EdgeInsets.only( padding: EdgeInsets.only(
top: 16, top: 16,
bottom: 4, bottom: 12,
left: horizontalPadding, left: horizontalPadding,
right: horizontalPadding, right: horizontalPadding,
), ),

@ -272,7 +272,11 @@ class ChatView extends StatelessWidget {
if (controller.room.canSendDefaultMessages && if (controller.room.canSendDefaultMessages &&
controller.room.membership == Membership.join) controller.room.membership == Membership.join)
Container( Container(
margin: EdgeInsets.all(bottomSheetPadding), margin: EdgeInsets.only(
bottom: bottomSheetPadding,
left: bottomSheetPadding,
right: bottomSheetPadding,
),
constraints: const BoxConstraints( constraints: const BoxConstraints(
maxWidth: FluffyThemes.columnWidth * 2.5, maxWidth: FluffyThemes.columnWidth * 2.5,
), ),

Loading…
Cancel
Save