[TIL]iOS SwitUI後退ボタンの実装
struct ChangeName: View {
@Binding var defaultName: String
@State var changeprofileName: String = ""
@Environment(\.presentationMode) var presentationMode: Binding<PresentationMode>
var body: some View {
TextField(self.defaultName, text: $changeprofileName).modifier(ClearButton(changeprofileName: $changeprofileName))
.navigationBarTitle(LocalizedStringKey("mypage.name.title"), displayMode: .inline)
.navigationBarBackButtonHidden(true)
.navigationBarItems(leading:
HStack {
//TODO: 닉네임을 취소로 바꾸기
Button(action: {
self.presentationMode.wrappedValue.dismiss()
}) {
Text(LocalizedStringKey("mypage.back.button"))
}
.foregroundColor(Color.white)
},trailing:
HStack {
Button(LocalizedStringKey("mypage.save.button"))
{ /*code*/ }
}
)
}
}
ソースhttps://kka7.tistory.com/276
https://stackoverflow.com/a/59822675/15746954
Reference
この問題について([TIL]iOS SwitUI後退ボタンの実装), 我々は、より多くの情報をここで見つけました https://velog.io/@iooi75/TIL-iOS-swiftUI-뒤로가기-버튼-구현テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol