revamped onboarding

This commit is contained in:
2025-02-25 19:18:44 +01:00
parent 6f2f86f936
commit 4ad867e609
21 changed files with 700 additions and 1065 deletions

View File

@@ -22,9 +22,7 @@ class OnboardingCard extends StatelessWidget {
children: [
Text(
title,
style: TextStyle(
fontSize: 24,
fontWeight: FontWeight.bold,
style: Theme.of(context).textTheme.headlineLarge!.copyWith(
color: Colors.white,
),
),
@@ -36,13 +34,12 @@ class OnboardingCard extends StatelessWidget {
Padding(padding: EdgeInsets.only(top: 20)),
Text(
description,
style: TextStyle(
fontSize: 16,
style: Theme.of(context).textTheme.bodyMedium!.copyWith(
color: Colors.white,
),
),
]
),
);
}
}
}