pagina da dashboard com cards

This commit is contained in:
2025-12-09 17:19:35 +00:00
parent dc3a7840bb
commit bd89eba772
6 changed files with 852 additions and 170 deletions

View File

@@ -0,0 +1,36 @@
import 'package:flutter/material.dart';
class HomeConfig {
// Dimensões dos cards
static const double cardwidthPadding = 400;
static const double cardheightPadding = 300;
// Cores principais
static const Color primaryColor = Colors.orange;
static const Color secondaryColor = Colors.blue;
static const Color accentColor = Colors.green;
// Estilos de texto
static TextStyle titleStyle = TextStyle(
fontSize: 20,
fontWeight: FontWeight.bold,
color: Colors.white,
);
static TextStyle subtitleStyle = TextStyle(
fontSize: 14,
color: Colors.white.withOpacity(0.8),
);
static TextStyle statValueStyle = TextStyle(
fontSize: 36,
fontWeight: FontWeight.bold,
color: Colors.white,
);
static TextStyle statLabelStyle = TextStyle(
fontSize: 12,
color: Colors.white.withOpacity(0.8),
letterSpacing: 1.5,
);
}