import 'package:flutter/cupertino.dart'; /// Creates gaps between given widgets List spaced(double gap, Iterable children) => children .expand((item) sync* { yield SizedBox(width: gap, height: gap); yield item; }) .skip(1) .toList();