mirror of
https://github.com/gabehf/Fladder.git
synced 2026-03-07 21:48:14 -08:00
12 lines
397 B
Dart
12 lines
397 B
Dart
import 'package:fladder/util/localization_helper.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
extension ThemeModeExtension on ThemeMode {
|
|
String label(BuildContext context) {
|
|
return switch (this) {
|
|
ThemeMode.light => context.localized.themeModeLight,
|
|
ThemeMode.dark => context.localized.themeModeDark,
|
|
ThemeMode.system => context.localized.themeModeSystem,
|
|
};
|
|
}
|
|
}
|