import 'package:flutter/widgets.dart'; Widget sizedBoxHeight(double? height) { return SizedBox( height: height, ); } Widget sizedBoxWidth(double? width) { return SizedBox( width: width, ); }