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