Files
Traders_Circuit/lib/Utils/Common/sized_box.dart
Rajshinde046 be518dbd3c splash screens
2024-03-15 19:30:17 +05:30

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