Skip to content

Instantly share code, notes, and snippets.

@feveral
Last active October 20, 2020 15:37
Show Gist options
  • Save feveral/265340781d0148536157e7ea4f1a39ec to your computer and use it in GitHub Desktop.
Save feveral/265340781d0148536157e7ea4f1a39ec to your computer and use it in GitHub Desktop.
ImagePickerUsage.swift
struct ContentView: View {
@State var showImagePicker: Bool = false
var body: some View {
Button("From Libiary"){
showImagePicker = true
}.sheet(isPresented: $showImagePicker) {
PhotoPicker(sourceType: .photoLibrary) { imageData in
// process your data
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment