register page top above black screen changed

This commit is contained in:
Kalonkarthik 2025-03-19 18:08:36 +05:30
parent 59955d3bdd
commit f68d58c3cf

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> {
], ],
), ),
) )
])), ]),
), )),
); );
} }
} }