Skip to content

Commit

Permalink
chore: Follow up design
Browse files Browse the repository at this point in the history
  • Loading branch information
krille-chan committed Jan 26, 2025
1 parent 63e6036 commit 8717f1c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
2 changes: 2 additions & 0 deletions lib/pages/chat/chat_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,8 @@ class ChatView extends StatelessWidget {
onPressed: controller.scrollDown,
heroTag: null,
mini: true,
backgroundColor: theme.colorScheme.surface,
foregroundColor: theme.colorScheme.onSurface,
child: const Icon(Icons.arrow_downward_outlined),
),
)
Expand Down
9 changes: 3 additions & 6 deletions lib/pages/chat/events/message.dart
Original file line number Diff line number Diff line change
Expand Up @@ -184,13 +184,10 @@ class Message extends StatelessWidget {
child: Material(
borderRadius:
BorderRadius.circular(AppConfig.borderRadius / 2),
color: selected
color: selected || highlightMarker
? theme.colorScheme.secondaryContainer
.withAlpha(100)
: highlightMarker
? theme.colorScheme.tertiaryContainer
.withAlpha(100)
: Colors.transparent,
.withAlpha(128)
: Colors.transparent,
),
),
),
Expand Down

0 comments on commit 8717f1c

Please sign in to comment.