Is it possible to use camera features with compose...
# compose
l
Is it possible to use camera features with compose. I'm thinking about SurfaceView...
z
You can embed Android `View`s in a composition, so I think
SurfaceView
should work. The biggest limitation with that currently is that those views don’t get input events, but if you’re building a camera you’re probably layering the control UI on top of the actual surface view so I’m guessing you don’t care.
l
@Zach Klippenstein (he/him) [MOD] hey sorry for the late reply, didn't notice that someone answered. Are you aware of an example to embed traditional Views into composition?