chore: delete button styling
This commit is contained in:
parent
dd72177f7d
commit
cdf81276b2
1 changed files with 13 additions and 2 deletions
|
|
@ -700,9 +700,20 @@ class _SpaceViewState extends State<SpaceView> {
|
|||
child: Row(
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
children: [
|
||||
const Icon(Icons.delete_outlined),
|
||||
Icon(
|
||||
Icons.delete_outlined,
|
||||
color:
|
||||
Theme.of(context).colorScheme.onErrorContainer,
|
||||
),
|
||||
const SizedBox(width: 12),
|
||||
Text(L10n.of(context).delete),
|
||||
Text(
|
||||
L10n.of(context).delete,
|
||||
style: TextStyle(
|
||||
color: Theme.of(context)
|
||||
.colorScheme
|
||||
.onErrorContainer,
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue