Files
TubeCards/lib/widgets/sliver_sized_box.dart
friebetill 80f218097d Initial commit
Add Space version 2.0.1
2022-03-28 14:56:00 +02:00

23 lines
406 B
Dart

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