This commit is contained in:
Patrick Alvin Alcala 2025-02-03 11:00:42 +08:00
parent b5151a053d
commit cf2ce36f87
14 changed files with 92 additions and 74 deletions

View file

@ -3,6 +3,7 @@ import 'package:google_fonts/google_fonts.dart';
import 'package:gap/gap.dart';
import 'package:pharmacy_mobile/auth/auth_service.dart';
import 'package:pharmacy_mobile/main.dart';
import 'package:pharmacy_mobile/widgets/page_background_widget.dart';
class RegisterPage extends StatefulWidget {
const RegisterPage({super.key});
@ -51,8 +52,11 @@ class _RegisterPageState extends State<RegisterPage> {
@override
Widget build(BuildContext context) {
return Container(
child: null,
return Scaffold(
body: PageBackgroundWidget(
child: Column(
children: [],
)),
);
}
}