feat: 新增应用设置功能及相关视图
- 在MainFeature中集成AppSettingFeature,支持应用设置页面的导航与状态管理。 - 新增AppSettingView以展示用户头像和昵称编辑功能,提升用户体验。 - 更新MainView以支持应用设置页面的展示,增强导航功能。
This commit is contained in:
@@ -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)
|
||||
}
|
||||
}
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user