mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-10 07:07:19 +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) {
|
Widget build(BuildContext context) {
|
||||||
if (isExtraLargeScreenSize(context)) {
|
if (isExtraLargeScreenSize(context)) {
|
||||||
return Row(
|
return Row(
|
||||||
spacing: 20,
|
children: _widgets.map(
|
||||||
children: _widgets,
|
(e) {
|
||||||
|
return Padding(
|
||||||
|
padding: const EdgeInsets.symmetric(vertical: 10),
|
||||||
|
child: e,
|
||||||
|
);
|
||||||
|
},
|
||||||
|
).toList(),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user