카테고리 없음
SwiftUI 리스트 컬럼 디자인 커스텀
리스트 컬럼의 디자인을 커스텀하게 변경 struct ContentView: View { @State private var items: [Item] = [ Item(id: 1, title: "아이템 1", description: "아이템 1 설명"), Item(id: 2, title: "아이템 2", description: "아이템 2 설명"), Item(id: 3, title: "아이템 3", description: "아이템 3 설명") ] var body: some View { VStack { List(items) { item in VStack(alignment: .leading) { Text(item.title) .font(.headline) .foregroundColor(.blue) // 제목 텍스..
2023. 7. 17. 12:21