Skip to content

Instantly share code, notes, and snippets.

@ch8n
Last active October 16, 2021 11:03
Show Gist options
  • Save ch8n/bd42ef59098082aa62195016da0321e9 to your computer and use it in GitHub Desktop.
Save ch8n/bd42ef59098082aa62195016da0321e9 to your computer and use it in GitHub Desktop.
@Composable
fun CaptureBitmap(...){
// we will use compose view as target to get bitmap
val composeView = ComposeView(...)
// put compose native view to compose ui using AndroidView
AndroidView(
factory = {
composeView.apply {
setContent {
.... put compose here
}
}
}
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment