Widgets
Widget spacer({int multiplier = 1, bool small = false}) { if (small) { return SizedBox(height: smallPaddingValue); } return SizedBox( height: lateralPaddingValue * multiplier, ); }