chore: Adjust paddings

pull/3009/head
Christian Kußowski 7 hours ago
parent ccca827c0c
commit 59b5e3ad8d
No known key found for this signature in database

@ -54,7 +54,7 @@ class ChatEventList extends StatelessWidget {
child: ListView.custom(
padding: EdgeInsets.only(
top: 8 + (theme.appBarTheme.toolbarHeight ?? 56),
bottom: 8 + 72,
bottom: controller.inputBarHeight,
left: horizontalPadding,
right: horizontalPadding,
),

@ -131,8 +131,8 @@ class ChatListViewBody extends StatelessWidget {
],
if (client.rooms.isNotEmpty && !controller.isSearchMode)
Container(
height: 40,
padding: EdgeInsets.only(bottom: 4),
height: 36 + 16,
padding: EdgeInsets.only(bottom: 16),
child: ListView(
padding: const EdgeInsets.symmetric(horizontal: 12.0),
shrinkWrap: true,
@ -363,7 +363,7 @@ class _FilterChip extends StatelessWidget {
side: BorderSide(
color: selected
? theme.colorScheme.secondaryContainer
: theme.colorScheme.surfaceContainerHighest,
: theme.dividerColor,
),
),
child: InkWell(

Loading…
Cancel
Save