Skip to content

Commit

Permalink
Merge pull request #205 from its-me-abhishek/main
Browse files Browse the repository at this point in the history
Fix splash screen overflow
  • Loading branch information
Pavel401 authored Nov 15, 2023
2 parents b443c92 + 6bb4a10 commit c6ca4b2
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 c6ca4b2

Please sign in to comment.