diff --git a/lib/pangea/chat_settings/widgets/delete_space_dialog.dart b/lib/pangea/chat_settings/widgets/delete_space_dialog.dart index f8a7edd3d..184ba65e7 100644 --- a/lib/pangea/chat_settings/widgets/delete_space_dialog.dart +++ b/lib/pangea/chat_settings/widgets/delete_space_dialog.dart @@ -215,6 +215,10 @@ class DeleteSpaceDialogState extends State { 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 { : Text(L10n.of(context).delete), ), ), - OutlinedButton( - onPressed: Navigator.of(context).pop, - child: Text(L10n.of(context).cancel), - ), ], ), ),