41 lines
951 B
Dart
41 lines
951 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class HomeConfig {
|
|
// Dimensões dos cards
|
|
static const double cardwidthPadding = 400;
|
|
static const double cardheightPadding = 300;
|
|
|
|
// Cores
|
|
static const Color primaryColor = Colors.orange;
|
|
|
|
// Espaçamentos
|
|
static const double cardSpacing = 20;
|
|
static const double cardMargin = 10;
|
|
|
|
// Estilos de texto
|
|
static TextStyle titleStyle = TextStyle(
|
|
fontSize: 14,
|
|
fontWeight: FontWeight.bold,
|
|
color: Colors.white.withOpacity(0.9),
|
|
letterSpacing: 1.5,
|
|
);
|
|
|
|
static TextStyle playerNameStyle = TextStyle(
|
|
fontSize: 18,
|
|
fontWeight: FontWeight.bold,
|
|
color: Colors.white,
|
|
);
|
|
|
|
static TextStyle statValueStyle = TextStyle(
|
|
fontSize: 42,
|
|
fontWeight: FontWeight.bold,
|
|
color: Colors.white,
|
|
height: 1,
|
|
);
|
|
|
|
static TextStyle statLabelStyle = TextStyle(
|
|
fontSize: 14,
|
|
color: Colors.white.withOpacity(0.8),
|
|
letterSpacing: 2,
|
|
);
|
|
} |