We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e2c72b commit 2a66aa8Copy full SHA for 2a66aa8
1 file changed
Neki-iOS/Features/MyPage/Sources/Presentation/Sources/View/AccountPreferenceView.swift
@@ -69,12 +69,20 @@ private extension AccountPreferenceView {
69
70
var profileArea: some View {
71
VStack(spacing: 16) {
72
- KFImage(store.user.profileImageURL)
73
- .resizable()
74
- .onFailureImage(.iconDefaultProfile)
75
- .scaledToFill()
76
- .frame(width: 142, height: 142)
77
- .clipShape(.circle)
+ ZStack(alignment: .bottomTrailing) {
+ KFImage(store.user.profileImageURL)
+ .resizable()
+ .onFailureImage(.iconDefaultProfile)
+ .scaledToFill()
+ .frame(width: 142, height: 142)
78
+ .clipShape(.circle)
79
+
80
+ Button {
81
+ store.send(.editProfileButtonTapped)
82
+ } label: {
83
+ Image(.iconProfileCamera)
84
+ }
85
86
87
HStack(spacing: 9) {
88
Text(store.user.nickname)
0 commit comments