DiscoverModule/lib/contacts_module/custom_widget/custom_sizedbox.dart

17 lines
315 B
Dart

import 'package:flutter/material.dart';
class CustomSizedBox extends StatelessWidget {
final double? height;
final double? width;
const CustomSizedBox({this.height, this.width});
@override
Widget build(BuildContext context) {
return SizedBox(
height: height,
width: width,
);
}
}