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