Removed the usage of spacing property because the GitHub action doesnt support the version that has it, so instead opted for using Padding.

This commit is contained in:
fkarmoush
2025-03-27 11:08:57 +03:00
parent 835dfe8785
commit f307aaff9d

View File

@ -49,8 +49,14 @@ class _DeviceSearchFiltersState extends State<DeviceSearchFilters>
Widget build(BuildContext context) {
if (isExtraLargeScreenSize(context)) {
return Row(
spacing: 20,
children: _widgets,
children: _widgets.map(
(e) {
return Padding(
padding: const EdgeInsets.symmetric(vertical: 10),
child: e,
);
},
).toList(),
);
}