chore: Message bubble color follow up
This commit is contained in:
parent
321cc07fb8
commit
b6ea44da2e
7 changed files with 37 additions and 39 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue