feat: signin page keyboard on IOS

This commit is contained in:
sBubshait 2025-08-03 10:51:20 +03:00
parent 8295e5bf03
commit d6a0e78031

View File

@ -407,6 +407,7 @@ class _SignInPageState extends State<SignInPage> {
return PopScope( return PopScope(
canPop: false, // Prevent back navigation from sign in page canPop: false, // Prevent back navigation from sign in page
child: Scaffold( child: Scaffold(
resizeToAvoidBottomInset: false,
body: Container( body: Container(
decoration: BoxDecoration( decoration: BoxDecoration(
gradient: LinearGradient( gradient: LinearGradient(
@ -442,6 +443,7 @@ class _SignInPageState extends State<SignInPage> {
// Content // Content
Expanded( Expanded(
child: SingleChildScrollView(
child: Container( child: Container(
margin: EdgeInsets.all(16), margin: EdgeInsets.all(16),
padding: EdgeInsets.all(24), padding: EdgeInsets.all(24),
@ -643,12 +645,13 @@ class _SignInPageState extends State<SignInPage> {
], ],
), ),
Spacer(), SizedBox(height: 40),
], ],
), ),
), ),
), ),
), ),
),
], ],
), ),
), ),