small fix, don't worry about it

This commit is contained in:
Tomas Dvorak
2026-04-10 12:05:40 +02:00
parent 7b7ed0083f
commit 5ab2773f98
55 changed files with 3240 additions and 483 deletions
@@ -16,13 +16,14 @@ class OnboardingIntroScreen extends ConsumerWidget {
return AppScaffold(
body: SafeArea(
child: Padding(
padding: const EdgeInsets.only(top: 30.0, left: 24.0, right: 24.0, bottom: 30.0),
child: Column(
crossAxisAlignment: CrossAxisAlignment.stretch,
children: [
child: SingleChildScrollView(
child: Padding(
padding: const EdgeInsets.only(top: 20.0, left: 24.0, right: 24.0, bottom: 20.0),
child: Column(
crossAxisAlignment: CrossAxisAlignment.stretch,
children: [
// Progress Bar and Navigation
_OnboardingProgress(currentStep: 1, totalSteps: 3),
const _OnboardingProgress(currentStep: 1, totalSteps: 3),
const SizedBox(height: 48),
const Icon(
Icons.timer_outlined,
@@ -64,7 +65,7 @@ class OnboardingIntroScreen extends ConsumerWidget {
title: 'Track Progress',
description: 'Watch yourself grow day by day',
),
const Spacer(),
const SizedBox(height: 48),
Row(
children: [
Expanded(
@@ -95,6 +96,7 @@ class OnboardingIntroScreen extends ConsumerWidget {
],
),
),
),
),
);
}