import 'package:flutter/material.dart'; SizedBox smallHeight() { return SizedBox( height: 5, ); } SizedBox mediumHeight() { return SizedBox( height: 10, ); } SizedBox bigHeight() { return SizedBox( height: 20, ); } SizedBox smallwidth() { return SizedBox( width: 5, ); } SizedBox mediumwidth() { return SizedBox( width: 10, ); } SizedBox bigwith() { return SizedBox( width: 10, ); }