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