chore: switch order of buttons in space delete dialog (#4338)
This commit is contained in:
parent
c61f8488ba
commit
f92548d4af
1 changed files with 4 additions and 4 deletions
|
|
@ -215,6 +215,10 @@ class DeleteSpaceDialogState extends State<DeleteSpaceDialog> {
|
|||
spacing: 8.0,
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
children: [
|
||||
OutlinedButton(
|
||||
onPressed: Navigator.of(context).pop,
|
||||
child: Text(L10n.of(context).cancel),
|
||||
),
|
||||
AnimatedSize(
|
||||
duration: FluffyThemes.animationDuration,
|
||||
child: OutlinedButton(
|
||||
|
|
@ -236,10 +240,6 @@ class DeleteSpaceDialogState extends State<DeleteSpaceDialog> {
|
|||
: Text(L10n.of(context).delete),
|
||||
),
|
||||
),
|
||||
OutlinedButton(
|
||||
onPressed: Navigator.of(context).pop,
|
||||
child: Text(L10n.of(context).cancel),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue