Files
Regroup/lib/Utils/Common/sized_box.dart
2024-05-23 15:43:13 +05:30

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,
);
}