DiscoverModule/lib/contacts_module/custom_widget/custom_sizedbox.dart

17 lines
315 B
Dart
Raw Normal View History

2024-11-22 10:38:43 +00:00
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,
);
}
}