Merge commit 'd0e1e0229c2d6b8c00e3278d71651003614e38d2' into merge

This commit is contained in:
ggurdin 2024-09-04 15:56:18 -04:00
commit 8b20cce186
No known key found for this signature in database
GPG key ID: A01CB41737CBB478
2 changed files with 5 additions and 6 deletions

View file

@ -156,11 +156,11 @@ class ChatListViewBody extends StatelessWidget {
),
if (client.rooms.isNotEmpty && !controller.isSearchMode)
SizedBox(
height: 44,
height: 64,
child: ListView(
padding: const EdgeInsets.symmetric(
horizontal: 12.0,
vertical: 6,
vertical: 16.0,
),
shrinkWrap: true,
scrollDirection: Axis.horizontal,

View file

@ -124,10 +124,9 @@ class PresenceAvatar extends StatelessWidget {
presence.userid;
final statusMsg = presence.statusMsg;
final statusMsgBubbleElevation =
theme.appBarTheme.scrolledUnderElevation ?? 4;
final statusMsgBubbleShadowColor = theme.colorScheme.onSurface;
final statusMsgBubbleColor = Colors.white.withAlpha(245);
const statusMsgBubbleElevation = 6.0;
final statusMsgBubbleShadowColor = theme.colorScheme.surface;
final statusMsgBubbleColor = Colors.white.withOpacity(0.9);
return Padding(
padding: const EdgeInsets.symmetric(horizontal: 8.0),
child: SizedBox(