feat: login page

This commit is contained in:
efrilm
2025-08-12 17:13:02 +07:00
parent afc8476701
commit 318d22d7c9
18 changed files with 606 additions and 22 deletions
@@ -0,0 +1,23 @@
import 'package:flutter/material.dart';
class SpaceHeight extends StatelessWidget {
const SpaceHeight(this.height, {super.key});
final double height;
@override
Widget build(BuildContext context) {
return SizedBox(height: height);
}
}
class SpaceWidth extends StatelessWidget {
const SpaceWidth(this.width, {super.key});
final double width;
@override
Widget build(BuildContext context) {
return SizedBox(width: width);
}
}