fix:【开锁页-设置-双重认证 还未调试 建议隐藏】

This commit is contained in:
Liuyf 2025-03-31 17:20:55 +08:00
parent fae8e9872f
commit ec3d4109b1
2 changed files with 3 additions and 2 deletions

View File

@ -362,7 +362,8 @@ class _LockSetPageState extends State<LockSetPage>
//todo: API接口
//
Obx(() => Visibility(
visible: state.lockFeature.value.doubleAuthentication == 1,
//state.lockFeature.value.doubleAuthentication == 1,
visible: false,
child: CommonItem(
leftTitel: '双重认证'.tr,
rightTitle: '',

View File

@ -4,7 +4,7 @@ import 'flavors.dart';
import 'main.dart' as runner;
Future<void> main() async {
F.appFlavor = Flavor.sky;
F.appFlavor = Flavor.xhj;
// AppLog.log('local调用了main函数');
await runner.main();
}