Fixed
Status Update
Comments
nj...@google.com <nj...@google.com>
ap...@google.com <ap...@google.com> #2
Thanks for filing the issue.
This is a particularly hard device to come by - do you happen to have access to the device? If so could you provide us with the output of: adb shell dumpsys media.camera > info.txt
Thanks!
This is a particularly hard device to come by - do you happen to have access to the device? If so could you provide us with the output of: adb shell dumpsys media.camera > info.txt
Thanks!
Description
Jetpack Compose release version: 1.0.0-alpha05
From discussion in this slack thread .
In and have method
Modifier.drawLayer()
there arerotationX
androtationY
parameters, which are making kind of 3D rotation. But these rotations look very distorted, because camera distance is too small, and there's no way to control it. BothRenderNode
View
setCameraDistance()
, which can be used to control camera distance from Compose.So I think there should be either good defaults, so that
rotationX
androtationY
would not look that distorted, or there should be modifier parameter to control camera distance.