feat: 新增应用设置功能及相关视图

- 在MainFeature中集成AppSettingFeature,支持应用设置页面的导航与状态管理。
- 新增AppSettingView以展示用户头像和昵称编辑功能,提升用户体验。
- 更新MainView以支持应用设置页面的展示,增强导航功能。
This commit is contained in:
edwinQQQ
2025-07-23 20:15:14 +08:00
parent bb49b00a59
commit 3a74547684
4 changed files with 155 additions and 2 deletions

View File

@@ -78,6 +78,18 @@ struct MainView: View {
)
case .test:
TestPushView()
case .appSetting:
IfLetStore(
self.store.scope(
state: \.appSettingState,
action: MainFeature.Action.appSettingAction
),
then: { appSettingStore in
WithPerceptionTracking {
AppSettingView(store: appSettingStore)
}
}
)
}
}
}