chore: Follow up design

pull/1577/head
Krille 10 months ago
parent 63e603614b
commit 8717f1c430
No known key found for this signature in database
GPG Key ID: E067ECD60F1A0652

@ -256,6 +256,8 @@ class ChatView extends StatelessWidget {
onPressed: controller.scrollDown, onPressed: controller.scrollDown,
heroTag: null, heroTag: null,
mini: true, mini: true,
backgroundColor: theme.colorScheme.surface,
foregroundColor: theme.colorScheme.onSurface,
child: const Icon(Icons.arrow_downward_outlined), child: const Icon(Icons.arrow_downward_outlined),
), ),
) )

@ -184,12 +184,9 @@ class Message extends StatelessWidget {
child: Material( child: Material(
borderRadius: borderRadius:
BorderRadius.circular(AppConfig.borderRadius / 2), BorderRadius.circular(AppConfig.borderRadius / 2),
color: selected color: selected || highlightMarker
? theme.colorScheme.secondaryContainer ? theme.colorScheme.secondaryContainer
.withAlpha(100) .withAlpha(128)
: highlightMarker
? theme.colorScheme.tertiaryContainer
.withAlpha(100)
: Colors.transparent, : Colors.transparent,
), ),
), ),

Loading…
Cancel
Save