onClickPhoto = { photo, _, ctx ->
val intent = Intent().apply {
action = Intent.ACTION_VIEW
setDataAndType(photo.uri, "image/*")
flags = Intent.FLAG_GRANT_READ_URI_PERMISSION
}
ctx.startActivity(Intent.createChooser(intent, "Open with External Apps"))