Files
flux/lib/data/enums.dart
2026-04-05 10:06:26 +02:00

13 lines
334 B
Dart

import 'package:flutter/material.dart';
enum AppThemeMode {
light('light', 'Chiaro', ThemeMode.light),
dark('dark', 'Scuro', ThemeMode.dark),
system('system', 'Sistema', ThemeMode.system);
const AppThemeMode(this.value, this.label, this.themeMode);
final String value;
final String label;
final ThemeMode themeMode;
}