chore: highlight select mode actions

This commit is contained in:
Christian Kußowski 2025-06-17 10:13:54 +02:00
commit 0a10d4fb7d
No known key found for this signature in database
GPG key ID: E067ECD60F1A0652
3 changed files with 16 additions and 4 deletions

View file

@ -37,6 +37,10 @@ class ChatInputRow extends StatelessWidget {
);
}
final selectedTextButtonStyle = TextButton.styleFrom(
foregroundColor: theme.colorScheme.onTertiaryContainer,
);
return Row(
crossAxisAlignment: CrossAxisAlignment.end,
mainAxisAlignment: MainAxisAlignment.spaceBetween,
@ -63,6 +67,7 @@ class ChatInputRow extends StatelessWidget {
SizedBox(
height: height,
child: TextButton(
style: selectedTextButtonStyle,
onPressed: controller.forwardEventsAction,
child: Row(
children: <Widget>[
@ -80,6 +85,7 @@ class ChatInputRow extends StatelessWidget {
? SizedBox(
height: height,
child: TextButton(
style: selectedTextButtonStyle,
onPressed: controller.replyAction,
child: Row(
children: <Widget>[
@ -92,6 +98,7 @@ class ChatInputRow extends StatelessWidget {
: SizedBox(
height: height,
child: TextButton(
style: selectedTextButtonStyle,
onPressed: controller.sendAgainAction,
child: Row(
children: <Widget>[