mod: 隐藏设置改为开发人员选项,改为次级菜单

This commit is contained in:
orz12
2024-02-17 09:30:08 +08:00
parent 3109e30f9e
commit fb2c672ae7
4 changed files with 47 additions and 37 deletions

View File

@@ -308,13 +308,13 @@ class AboutController extends GetxController {
tapOnVersion() {
if (settingController.hiddenSettingUnlocked.value) {
SmartDialog.showToast('您已解锁隐藏设置, 无需再次操作');
SmartDialog.showToast('您已解锁开发人员选项, 无需再次操作');
return;
}
count.value++;
if (count.value == 5) {
setting.put(SettingBoxKey.hiddenSettingUnlocked, true);
SmartDialog.showToast('恭喜您发现了隐藏设置!');
SmartDialog.showToast('恭喜您发现了开发人员选项!');
}
}
}