|
|
@ -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),
|
|
|
|
],
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|