Riley Moses
Riley Moses
I have this issue as well.
Thanks to @rohitshahane93 for the workaround. It's also possible to extend `TextFieldBoxes` like so: ```kotlin class FixedTextFieldBoxes @JvmOverloads constructor( context: Context, attrs: AttributeSet? = null ) : TextFieldBoxes(context, attrs) {...
Sounds good! I'm happy to help/contribute any way I can. > You don't need to fork react-native Ah, looks like you're right; I'm using `appcompat-resources` in the project where I...
@ShikaSD I seem to recall seeing Fabric-related stuff in the stacktraces while investigating the appcompat issue; am I imagining things, or is it already enabled on Android?
Ah I definitely haven't done any of that, but might take a stab at it. Thanks!
> For now, we don't plan any official support for Compose @ShikaSD can you elaborate on this? Should I avoid investing any effort in using Compose if Fabric won't support...
> I think not, frankly the opposite Awesome, I was hoping you'd say that! I'm working on proving out using Compose in various parts of my current project, so I'll...
I believe I've found another issue: I'm not 100% sure if this is the scenario to reproduce, but I have a component like ```ts const Foo = () => {...
> maybe it is possible to just not measure the view until it is attached Unless I'm missing something, it looks like `AbstractComposeView` specifically forbids that by marking `onMeasure()` as...
> Compose attaches the recomposer to the view tag of android.R.id.content, IIRC, so if you can get hold on the activity, you can ... I believe it actually uses the...