diff --git a/it0_app/lib/features/profile/presentation/pages/profile_page.dart b/it0_app/lib/features/profile/presentation/pages/profile_page.dart index ae2ca58..5fd81fa 100644 --- a/it0_app/lib/features/profile/presentation/pages/profile_page.dart +++ b/it0_app/lib/features/profile/presentation/pages/profile_page.dart @@ -105,7 +105,10 @@ class _ProfilePageState extends ConsumerState { _SettingsGroup( cardColor: cardColor, children: [ - _SettingsRow( + // [HIDDEN] 对话引擎选择(Claude API vs Agent SDK) + // 产品决策:引擎切换属于平台级配置,普通用户无需感知,暂不在"我"页面暴露。 + // 如需恢复显示,删除 `if (false)` 即可。 + if (false) _SettingsRow( icon: Icons.psychology, iconBg: const Color(0xFF7C3AED), title: '对话引擎', @@ -195,13 +198,19 @@ class _ProfilePageState extends ConsumerState { style: TextStyle(color: subtitleColor, fontSize: 14), ), ), - _SettingsRow( + // [HIDDEN] 检查更新 + // 产品决策:更新检查在 App 启动时已后台静默运行(UpdateService.silentCheck), + // 无需在"我"页面额外入口。如需恢复,删除 `if (false)` 即可。 + if (false) _SettingsRow( icon: Icons.system_update_outlined, iconBg: const Color(0xFF22C55E), title: '检查更新', onTap: () => UpdateService().manualCheckUpdate(context), ), - _SettingsRow( + // [HIDDEN] 语音 I/O 测试(TTS / STT) + // 产品决策:仅供开发调试使用,正式版不对普通用户展示。 + // 调试时可删除 `if (false)` 临时开启;VoiceTestPage 代码及路由均保留。 + if (false) _SettingsRow( icon: Icons.record_voice_over, iconBg: const Color(0xFF10B981), title: '语音 I/O 测试',