Created
July 21, 2020 12:40
-
-
Save alfianlosari/4d34135f6342d8b74ff06422a584fd3d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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