fix overflow error for onboarding

This commit is contained in:
Dr-Blank 2024-10-28 05:45:28 +05:30
parent 11b768d41c
commit 3488ae97fb
No known key found for this signature in database
GPG key ID: 7452CC63F210A266

View file

@ -40,7 +40,8 @@ class OnboardingSinglePage extends HookConsumerWidget {
}
return Scaffold(
body: Column(
body: SingleChildScrollView(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Padding(
@ -96,6 +97,7 @@ class OnboardingSinglePage extends HookConsumerWidget {
),
],
),
),
);
}
}