Skip to content

Instantly share code, notes, and snippets.

@tdcolvin
Created January 31, 2023 11:17
Show Gist options
  • Save tdcolvin/a2d7bea1a2f193b5f243b0a5910d677e to your computer and use it in GitHub Desktop.
Save tdcolvin/a2d7bea1a2f193b5f243b0a5910d677e to your computer and use it in GitHub Desktop.
Button(
onClick = {
//On button press, launch the photo picker
launcher.launch(PickVisualMediaRequest(
//Here we request only photos. Change this to .ImageAndVideo if
//you want videos too.
//Or use .VideoOnly if you only want videos.
mediaType = ActivityResultContracts.PickVisualMedia.ImageOnly
))
}
) {
Text("Select Photo")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment