Skip to content

Commit

Permalink
Fix splash screen overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
its-me-abhishek committed Nov 15, 2023
1 parent b443c92 commit 6bb4a10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/views/Onboarding/onboarding_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class _OnboardingScreenState extends State<OnboardingScreen> {
Widget _buildOnboardingPage(
OnboardingModel content, double width, double height) {
return Padding(
padding: const EdgeInsets.all(40.0),
padding: const EdgeInsets.all(35.0),
child: Column(
children: [
SvgPicture.asset(
Expand All @@ -92,7 +92,7 @@ class _OnboardingScreenState extends State<OnboardingScreen> {
fontSize: (width <= 550) ? 30 : 35,
),
),
const SizedBox(height: 15),
const SizedBox(height: 5),
Text(
content.desc,
style: GoogleFonts.poppins(
Expand Down

0 comments on commit 6bb4a10

Please sign in to comment.