Revert "formatted all files."

This reverts commit 04250ebc98.
This commit is contained in:
Faris Armoush
2025-06-12 16:04:49 +03:00
parent 218f43bacb
commit c642ba2644
473 changed files with 4335 additions and 5417 deletions

View File

@ -12,11 +12,11 @@ class SubSpaceDialog extends StatefulWidget {
final void Function(SubSpaceModel?) onConfirmed;
const SubSpaceDialog({
super.key,
Key? key,
required this.subSpaces,
this.selected,
required this.onConfirmed,
});
}) : super(key: key);
@override
State<SubSpaceDialog> createState() => _SubSpaceDialogState();
@ -63,7 +63,7 @@ class _SubSpaceDialogState extends State<SubSpaceDialog> {
_selectedId = value;
});
},
activeColor: const Color(0xFF2962FF),
activeColor: Color(0xFF2962FF),
title: Text(
space.name ?? 'Unnamed Sub-Space',
style: context.textTheme.bodyMedium?.copyWith(
@ -75,7 +75,7 @@ class _SubSpaceDialogState extends State<SubSpaceDialog> {
controlAffinity: ListTileControlAffinity.trailing,
contentPadding: const EdgeInsets.symmetric(horizontal: 24),
);
}),
}).toList(),
const SizedBox(height: 12),
const Divider(height: 1, thickness: 1),
SubSpaceDialogButtons(selectedId: _selectedId, widget: widget),