提交缺失语言文件

This commit is contained in:
wyf
2026-01-31 14:44:55 +08:00
parent 97ffc1220d
commit 144de2c965
5 changed files with 1038 additions and 0 deletions

13
lib/enum/NetworkType.dart Normal file
View File

@@ -0,0 +1,13 @@
// 网络类型枚举
enum NetworkType {
none('无网络'),
wifi('WiFi'),
cellular('移动网络'),
ethernet('以太网'),
bluetooth('蓝牙'),
vpn('VPN'),
other('其他网络');
final String description;
const NetworkType(this.description);
}

12
lib/enum/SignalLevel.dart Normal file
View File

@@ -0,0 +1,12 @@
// 信号强度等级枚举
enum SignalLevel {
none(0, '无信号'),
poor(1, '信号弱'),
fair(2, '信号中'),
good(3, '信号良'),
excellent(4, '信号强');
final int level;
final String description;
const SignalLevel(this.level, this.description);
}