티스토리 뷰

📱 SwiftUI

List

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

A container that presents rows of data arranged in a single column, optionally providing the ability to select one or more members.

var body: some View {
    List {
        Text("A List Item")
        Text("A Second List Item")
        Text("A Third List Item")
    }
}
728x90
반응형