Merge branch 'dev' of github.com:VinistanSS/FCSC into dev

This commit is contained in:
venbaittech 2025-03-19 18:31:29 +05:30
commit 7564a66d8c

View File

@ -388,10 +388,10 @@ class _RegisterScreenState extends ConsumerState<RegisterScreen> {
if (didPop) return; if (didPop) return;
context.go('/login'); // Show exit confirmation dialog context.go('/login'); // Show exit confirmation dialog
}, },
child: SafeArea( child:Scaffold(
child: Scaffold(
backgroundColor: Colors.white, backgroundColor: Colors.white,
body: Stack(children: [ body: SafeArea(
child: Stack(children: [
SingleChildScrollView( SingleChildScrollView(
child: Column( child: Column(
children: [ children: [
@ -1369,8 +1369,8 @@ class _RegisterScreenState extends ConsumerState<RegisterScreen> {
], ],
), ),
) )
])), ]),
), )),
); );
} }
} }