17 lines
315 B
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,
|
||
|
);
|
||
|
}
|
||
|
}
|