tentative de firebase
This commit is contained in:
@@ -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,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user