login
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class SpaceHeight extends StatelessWidget {
|
||||
final double height;
|
||||
const SpaceHeight(this.height, {super.key});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) => SizedBox(height: height);
|
||||
}
|
||||
|
||||
class SpaceWidth extends StatelessWidget {
|
||||
final double width;
|
||||
const SpaceWidth(this.width, {super.key});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) => SizedBox(width: width);
|
||||
}
|
||||
Reference in New Issue
Block a user