gest added

This commit is contained in:
meet2711
2024-06-18 14:58:53 +05:30
parent e68c0edcfb
commit 5c209a23f3
29 changed files with 110 additions and 91 deletions

View File

@@ -10,14 +10,15 @@ class RegisterLayout extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: AppColor.plainWhite,
body: ListView(
//
children: const [
RegisterTopSection(),
RegisterForm(),
RegisterBottomSection(),
],
));
backgroundColor: AppColor.plainWhite,
body: ListView(
//
children: const [
RegisterTopSection(),
RegisterForm(),
RegisterBottomSection(),
],
),
);
}
}