Skip to content

Instantly share code, notes, and snippets.

@alfianlosari
Created July 21, 2020 12:40
Show Gist options
  • Select an option

  • Save alfianlosari/4d34135f6342d8b74ff06422a584fd3d to your computer and use it in GitHub Desktop.

Select an option

Save alfianlosari/4d34135f6342d8b74ff06422a584fd3d to your computer and use it in GitHub Desktop.
import SwiftUI
struct ItemsList: View {
let items: [Item]
var body: some View {
List(items, children: \.children) {
Text($0.title)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment