기본적인 텍스트 버튼의 경우는 아래와 같이 구성합니다. var body: some View { HStack(spacing: 20){ Button("Button"){ print("Button1") } Button(action:{print("Button2")}){ Text("Button") .padding() .background(RoundedRectangle(cornerRadius: 10).strokeBorder()) } Button(action: {print("Button3")}) { Circle() .stroke(lineWidth: 2) .frame(width: 80, height: 80) .overlay(Text("Button")) } .accentColor(.green) } } 버튼에 이미지를 넣고..