mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-09 22:57:21 +00:00
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:
@ -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(),
|
||||
);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user