I am trying to start file chooser on a button click (composable function). Unable to use startActivityForResult()
.
@Composable
fun SelectScreen() {
Button(onClick = {
val intent = Intent(Intent.ACTION_GET_CONTENT)
startActivity(intent)
}
) {
Text("BUTTON")
}
}