11 lines
506 B
Dart
11 lines
506 B
Dart
|
|
class Constants {
|
||
|
|
// Chiavi per salvare i dati sul telefono
|
||
|
|
static const String prefThemeKey = 'selected_theme';
|
||
|
|
static const String prefLanguageKey = 'selected_language';
|
||
|
|
static const String prefBoardSizeKey = 'board_size';
|
||
|
|
|
||
|
|
// Impostazioni della scacchiera a rombo - RAGGI INCREMENTATI
|
||
|
|
static const int minBoardRadius = 2; // Ex Normale, ora è Piccola
|
||
|
|
static const int maxBoardRadius = 5; // Formato MAX, enorme
|
||
|
|
static const int defaultBoardRadius = 3; // Ora il default è più grande
|
||
|
|
}
|