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

@@ -16,7 +16,7 @@ class NextWorkoutBanner extends StatelessWidget {
decoration: BoxDecoration(
color: AppColors.surfaceContainer,
borderRadius: UIConstants.cardBorderRadius,
border: Border.all(color: AppColors.border),
border: Border.all(color: AppColors.accentBorder),
),
child: Row(
children: [
@@ -24,12 +24,13 @@ class NextWorkoutBanner extends StatelessWidget {
width: 40,
height: 40,
decoration: BoxDecoration(
color: AppColors.accentMuted,
color: AppColors.accent,
borderRadius: UIConstants.smallCardBorderRadius,
boxShadow: UIConstants.accentGlow,
),
child: const Icon(
Icons.play_arrow_rounded,
color: AppColors.accent,
color: AppColors.zinc950,
size: 22,
),
),
@@ -39,30 +40,28 @@ class NextWorkoutBanner extends StatelessWidget {
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
'Up Next',
style: GoogleFonts.inter(
fontSize: 12,
fontWeight: FontWeight.w500,
color: AppColors.textMuted,
'UP NEXT',
style: GoogleFonts.jetBrainsMono(
fontSize: 10,
fontWeight: FontWeight.w600,
letterSpacing: 1.5,
color: AppColors.accent,
),
),
const SizedBox(height: 2),
Text(
workoutName,
style: GoogleFonts.inter(
workoutName.toUpperCase(),
style: GoogleFonts.chakraPetch(
fontSize: 15,
fontWeight: FontWeight.w600,
letterSpacing: 0.5,
color: AppColors.textPrimary,
),
),
],
),
),
const Icon(
Icons.chevron_right,
color: AppColors.textMuted,
size: 20,
),
const Icon(Icons.chevron_right, color: AppColors.textMuted, size: 20),
],
),
);

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,
),
),