Created
June 9, 2022 07:52
-
-
Save meyusufdemirci/d785764e312ae57fa43fd515f213d275 to your computer and use it in GitHub Desktop.
What is New in SwiftUI, WWDC 22 Article
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
@State var selectedPhotos: [PhotosPickerItem] = [] | |
var body: some View { | |
PhotosPicker(selection: $selectedPhotos) { | |
Text("Choose photos") | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment