chore: apply border to dialog directly in delete space dialog (#5093)

This commit is contained in:
ggurdin 2026-01-06 15:19:13 -05:00 committed by GitHub
parent ecec6e898c
commit 83b54188ae
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -145,18 +145,18 @@ class DeleteSpaceDialogState extends State<DeleteSpaceDialog> {
@override
Widget build(BuildContext context) {
return Dialog(
shape: RoundedRectangleBorder(
side: BorderSide(
color: Theme.of(context).colorScheme.error,
),
borderRadius: BorderRadius.circular(32.0),
),
child: Container(
constraints: const BoxConstraints(
maxWidth: 400,
maxHeight: 600,
),
padding: const EdgeInsets.symmetric(vertical: 20),
decoration: BoxDecoration(
border: Border.all(
color: Theme.of(context).colorScheme.error,
),
borderRadius: BorderRadius.circular(32.0),
),
child: Column(
mainAxisSize: MainAxisSize.min,
children: [