[SwiftUI] Custom Selectable Modal
·
🍎 iOS/SwiftUI
생김새 구현 struct SelectableModal: View { let title: String let selectCases: [String] let onSelect: (String) -> Void var body: some View { VStack(spacing: 0) { Spacer().frame(height: 26) Text(title) .font(.system(size: 17, weight: .bold)) .padding(.bottom, 16) Rectangle() .foregroundColor(ColorManager.black150) .frame(height: 1) ForEach(selectCases, id: \\.self) { selectCase in Button { onSelect(sel..
JerryiOS
Jerry