tentative de firebase

This commit is contained in:
2025-12-12 10:37:10 +00:00
parent bd89eba772
commit 8e179df1dc
15 changed files with 535 additions and 33 deletions

View File

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