티스토리 뷰

📱 SwiftUI

Section

James Wetzel 2022. 6. 10. 13:22
728x90
반응형

A container view that you can use to add hierarchy to certain collection views.

Section
List {
    Section(header: Text("Header")) {
        Text("Row")
    }
    .headerProminence(.increased)
}
.listStyle(.insetGrouped)
728x90
반응형