chore: Adjust input bar button design

This commit is contained in:
Christian Kußowski 2025-09-25 17:02:44 +02:00
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, height: height,
child: TextButton( child: TextButton(
style: TextButton.styleFrom( style: TextButton.styleFrom(
foregroundColor: Colors.orange, foregroundColor: theme.colorScheme.error,
), ),
onPressed: controller.deleteErrorEventsAction, onPressed: controller.deleteErrorEventsAction,
child: Row( child: Row(
children: <Widget>[ children: <Widget>[
const Icon(Icons.delete), const Icon(Icons.delete_forever_outlined),
Text(L10n.of(context).delete), Text(L10n.of(context).delete),
], ],
), ),