Skip to content

Commit

Permalink
chore: Follow up chatlist design
Browse files Browse the repository at this point in the history
  • Loading branch information
krille-chan committed Aug 10, 2024
1 parent 059522c commit 89309ca
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions lib/pages/chat_list/chat_list_body.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
8 changes: 4 additions & 4 deletions lib/pages/chat_list/status_msg_list.dart
Original file line number Diff line number Diff line change
Expand Up @@ -124,10 +124,10 @@ 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.of(context).colorScheme.surface;
final statusMsgBubbleColor = Colors.white.withOpacity(0.9);
return Padding(
padding: const EdgeInsets.symmetric(horizontal: 8.0),
child: SizedBox(
Expand Down

0 comments on commit 89309ca

Please sign in to comment.