Przebudowanie aplikacji, usprawnione AI, dodanie combo buildera
Some checks failed
Build Linux App / build (push) Failing after 1m18s

This commit is contained in:
Kazimierz Ciołek
2026-07-06 23:44:17 +02:00
parent 9dcc4b87de
commit 6dd7213eb0
48 changed files with 3229 additions and 669 deletions

View File

@@ -14,11 +14,12 @@ class WelcomeHeader extends StatelessWidget {
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
'Welcome back',
style: GoogleFonts.inter(
fontSize: 14,
fontWeight: FontWeight.w500,
color: AppColors.textMuted,
'WELCOME BACK',
style: GoogleFonts.jetBrainsMono(
fontSize: 11,
fontWeight: FontWeight.w600,
letterSpacing: 2,
color: AppColors.accent,
),
),
const SizedBox(height: UIConstants.spacing4),
@@ -26,10 +27,11 @@ class WelcomeHeader extends StatelessWidget {
children: [
Expanded(
child: Text(
programName,
style: GoogleFonts.inter(
programName.toUpperCase(),
style: GoogleFonts.chakraPetch(
fontSize: 28,
fontWeight: FontWeight.w700,
letterSpacing: 0.5,
color: AppColors.textPrimary,
),
),
@@ -42,21 +44,23 @@ class WelcomeHeader extends StatelessWidget {
decoration: BoxDecoration(
color: AppColors.accentMuted,
borderRadius: UIConstants.smallCardBorderRadius,
border: Border.all(color: AppColors.accentBorder),
),
child: Row(
mainAxisSize: MainAxisSize.min,
children: [
const Icon(
Icons.fitness_center,
Icons.sports_martial_arts,
size: 14,
color: AppColors.accent,
),
const SizedBox(width: 6),
Text(
'Active Program',
style: GoogleFonts.inter(
fontSize: 12,
'ACTIVE PROGRAM',
style: GoogleFonts.jetBrainsMono(
fontSize: 10,
fontWeight: FontWeight.w600,
letterSpacing: 1.5,
color: AppColors.accent,
),
),