mirror of
https://github.com/EasyTier/astral.git
synced 2025-05-19 10:30:24 +00:00
10 lines
232 B
Dart
10 lines
232 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
String getThemeModeText(ThemeMode mode) {
|
|
return switch (mode) {
|
|
ThemeMode.light => '浅色模式',
|
|
ThemeMode.dark => '深色模式',
|
|
ThemeMode.system => '跟随系统',
|
|
};
|
|
}
|