개발/SWIFT 아이폰
SwiftUI 라디오 버튼 생성 및 선택 체크
라디오 버튼 생성 후 선택한 라디오 버튼에 따라 하단 버튼 색상을 변경 라디오 버튼 생성 struct RadioButtonField: View { let id: String let label: String let size: CGFloat let color: Color let bgColor: Color let textSize: CGFloat let isMarked:Bool let callback: (String)->() init( id: String, label:String, size: CGFloat = 20, color: Color = Color.black, bgColor: Color = Color.black, textSize: CGFloat = 14, isMarked: Bool = false, call..
2023. 7. 17. 15:56