Skip to content

Instantly share code, notes, and snippets.

@donchan922
Created March 29, 2020 12:43
Show Gist options
  • Save donchan922/4b087ecfd50c82f3432417c8e9b94881 to your computer and use it in GitHub Desktop.
Save donchan922/4b087ecfd50c82f3432417c8e9b94881 to your computer and use it in GitHub Desktop.
import SwiftUI
struct ContentView: View {
var body: some View {
List {
Section(header: Text("Section1"), footer: Text("Footer")) {
Text("row1")
Text("row2")
Text("row3")
}
}.listStyle(GroupedListStyle())
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment