chore: Adjust input bar button design

This commit is contained in:
Christian Kußowski 2025-09-25 17:02:44 +02:00
parent 07a26563a0
commit f5b9c3dd8d
No known key found for this signature in database
GPG key ID: E067ECD60F1A0652

View file

@ -52,12 +52,12 @@ class ChatInputRow extends StatelessWidget {
height: height,
child: TextButton(
style: TextButton.styleFrom(
foregroundColor: Colors.orange,
foregroundColor: theme.colorScheme.error,
),
onPressed: controller.deleteErrorEventsAction,
child: Row(
children: <Widget>[
const Icon(Icons.delete),
const Icon(Icons.delete_forever_outlined),
Text(L10n.of(context).delete),
],
),