Is it safe to create a custom view using `Abstract...
# compose
m
Is it safe to create a custom view using
AbstractComposeView
? I need to reuse a
Composable
in multiple legacy screens and I wanted to create a “wrapper custom view” for it. However, I see
ComposeView
(final) has some logic that feels very important:
Copy code
/**
 * Set the Jetpack Compose UI content for this view.
 * Initial composition will occur when the view becomes attached to a window or when
 * [createComposition] is called, whichever comes first.
 */