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

@@ -0,0 +1,27 @@
import Foundation
import ComposableArchitecture
struct AppSettingFeature: Reducer {
struct State: Equatable {
var nickname: String = "hahahaha"
var avatarURL: String? = nil
}
enum Action: Equatable {
case onAppear
case editNicknameTapped
case logoutTapped
// action
}
func reduce(into state: inout State, action: Action) -> Effect<Action> {
switch action {
case .onAppear:
return .none
case .editNicknameTapped:
//
return .none
case .logoutTapped:
//
return .none
}
}
}