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

@ -10,12 +10,12 @@ class SpaceDropdown extends StatelessWidget {
final String hintMessage;
const SpaceDropdown({
super.key,
Key? key,
required this.spaces,
required this.selectedValue,
required this.onChanged,
required this.hintMessage,
});
}) : super(key: key);
@override
Widget build(BuildContext context) {
@ -25,7 +25,7 @@ class SpaceDropdown extends StatelessWidget {
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
'Space',
"Space",
style: Theme.of(context).textTheme.bodyMedium!.copyWith(
fontWeight: FontWeight.w400,
fontSize: 13,
@ -67,7 +67,7 @@ class SpaceDropdown extends StatelessWidget {
);
}).toList(),
onChanged: onChanged,
style: const TextStyle(color: Colors.black),
style: TextStyle(color: Colors.black),
hint: Padding(
padding: const EdgeInsets.only(left: 10),
child: Text(