KonectarApp/lib/contacts_module/custom_widget/custom_sizedbox.dart

17 lines
315 B
Dart
Raw Normal View History

2024-12-19 05:21:33 +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,
);
}
}