반응형
Hacking with Swift 사이트의 강좌 번역본입니다.
[원문 : https://www.hackingwithswift.com/quick-start/swiftui/how-to-make-a-grouped-list]
How to make a grouped list
[동영상 강좌 : https://youtu.be/XAeRrSFsvxM]
SwiftUI의 list는 UITableView 처럼, 그룹화(grouped) 또는 일반(plain) 스타일을 지원합니다. 기본은 일반 스타일이지만, 원하는 경우에 그릅화로 변경하기 위해서 list에서 .listStyle(GroupedListStyle()) modifier를 사용해야 합니다.
예를들어, 다음은 예제 행을 정의하고 그룹화된 목록안에 배치한 것입니다.
struct ExampleRow: View {
var body: some View {
Text("Example Row")
}
}
struct ContentView: View {
var body: some View {
List {
Section(header: Text("Examples")) {
ExampleRow()
ExampleRow()
ExampleRow()
}
}.listStyle(GroupedListStyle())
}
}
반응형
'SwiftUI > Lists' 카테고리의 다른 글
How to use implicit stacking (0) | 2019.11.20 |
---|---|
How to set the background color of list rows using listRowBackground() (0) | 2019.11.20 |
How to add sections to a list (0) | 2019.11.20 |
How to enable editing on a list using EditButton (0) | 2019.11.20 |
How to let users move rows in a list (0) | 2019.11.20 |
How to let users delete rows from a list (0) | 2019.11.20 |
How to create a list of dynamic items (0) | 2019.11.20 |
How to create a list of static items (0) | 2019.11.20 |