Enhance Pad Tracking with new Flow and Supply logic

This commit is contained in:
2026-01-09 13:35:07 -06:00
parent 24ffac2415
commit dc6bcad83f
17 changed files with 765 additions and 171 deletions

View File

@@ -91,8 +91,8 @@ class QuickLogButtons extends ConsumerWidget {
final isDark = Theme.of(context).brightness == Brightness.dark;
return SizedBox(
height: 80,
width: 75,
// Removed fixed height to prevent overflow on larger text scalings
child: Material(
color: Colors.transparent,
child: InkWell(
@@ -118,7 +118,9 @@ class QuickLogButtons extends ConsumerWidget {
style: GoogleFonts.outfit(
fontSize: 12, // Slightly larger text
fontWeight: FontWeight.w600,
color: isDark ? Colors.white.withValues(alpha: 0.9) : color,
color: isDark
? Colors.white.withValues(alpha: 0.9)
: AppColors.charcoal,
),
),
],