38 lines
437 B
Dart
38 lines
437 B
Dart
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,
|
|
);
|
|
}
|