Files
astral/lib/utils/主题工具.dart
T
2025-03-15 23:25:22 +08:00

10 lines
232 B
Dart

import 'package:flutter/material.dart';
String getThemeModeText(ThemeMode mode) {
return switch (mode) {
ThemeMode.light => '浅色模式',
ThemeMode.dark => '深色模式',
ThemeMode.system => '跟随系统',
};
}