협업의 기초 - View분리 방법
2료일:
원래의 뷰 struct CouplingView: View { private let mycode = UserManager.shared.currentUserUID @State private var clickPasteBtn = false @Binding var isOpen : Bool var body: some View { NavigationView { VStack{ ZStack { HStack{ Button(action: { isOpen = false }){ Image(systemName: "xmark") .resizable() .foregroundColor(.tertiaryLabel) .frame(width: UIScreen.getWidth(20),height: UIScreen.getHeight(20)) ..