chore: Message bubble color follow up

This commit is contained in:
krille-chan 2025-02-05 19:57:53 +01:00
commit b6ea44da2e
No known key found for this signature in database
7 changed files with 37 additions and 39 deletions

View file

@ -20,7 +20,12 @@ class ChatAppBarTitle extends StatelessWidget {
Widget build(BuildContext context) {
final room = controller.room;
if (controller.selectedEvents.isNotEmpty) {
return Text(controller.selectedEvents.length.toString());
return Text(
controller.selectedEvents.length.toString(),
style: TextStyle(
color: Theme.of(context).secondaryBubbleColor,
),
);
}
return InkWell(
hoverColor: Colors.transparent,