chore: Follow up bubble color
This commit is contained in:
parent
b6ea44da2e
commit
5e937ca266
2 changed files with 3 additions and 3 deletions
|
|
@ -23,7 +23,7 @@ class ChatAppBarTitle extends StatelessWidget {
|
||||||
return Text(
|
return Text(
|
||||||
controller.selectedEvents.length.toString(),
|
controller.selectedEvents.length.toString(),
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
color: Theme.of(context).secondaryBubbleColor,
|
color: Theme.of(context).colorScheme.tertiary,
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -179,7 +179,7 @@ class ChatView extends StatelessWidget {
|
||||||
actionsIconTheme: IconThemeData(
|
actionsIconTheme: IconThemeData(
|
||||||
color: controller.selectedEvents.isEmpty
|
color: controller.selectedEvents.isEmpty
|
||||||
? null
|
? null
|
||||||
: theme.secondaryBubbleColor,
|
: theme.colorScheme.tertiary,
|
||||||
),
|
),
|
||||||
automaticallyImplyLeading: false,
|
automaticallyImplyLeading: false,
|
||||||
leading: controller.selectMode
|
leading: controller.selectMode
|
||||||
|
|
@ -187,7 +187,7 @@ class ChatView extends StatelessWidget {
|
||||||
icon: const Icon(Icons.close),
|
icon: const Icon(Icons.close),
|
||||||
onPressed: controller.clearSelectedEvents,
|
onPressed: controller.clearSelectedEvents,
|
||||||
tooltip: L10n.of(context).close,
|
tooltip: L10n.of(context).close,
|
||||||
color: theme.secondaryBubbleColor,
|
color: theme.colorScheme.tertiary,
|
||||||
)
|
)
|
||||||
: FluffyThemes.isColumnMode(context)
|
: FluffyThemes.isColumnMode(context)
|
||||||
? null
|
? null
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue