Barry Irvine
Barry Irvine
@mtrakal I think the nulls on your Instant aren't handled correctly. Perhaps this? ``` object InstantClassParceler : Parceler { override fun create(parcel: Parcel) = parcel.readString()?.let { Instant.parse(it) } override fun...
Started happening for me on Bitrise CI. Works fine locally or if I use `4.10.2`
I raised the issue with Sentry too and they have fixed it with an upcoming release. https://github.com/getsentry/sentry-android-gradle-plugin/issues/676
Working with latest versions
I think this is also related to our issue. We had: Image( modifier = Modifier.padding(8.dp), bitmap = (QRCode(barcode).render().nativeImage() as Bitmap).asImageBitmap(), alpha = if (expired) 0.38f else 1.0f, contentDescription = stringResource(R.string.alt_qr_code)...
@g0dkar I can confirm that the QR code now looks good in Compose (for my scenario at least)
Yeah, I've just realised it's the LinearProgressIndicator when in dark mode! Although I think if the rest of the animations had been as smooth as above then it would have...
`animateItemPlacement` was deprecated a while back. You should have been using `animateItem`...
Any idea when we can expect the release?
With a lot of help from Gemini I was able to create a saveable version of the TopLevelBackStack. Just make all your navigation destinations subclass NavKey and implement Serializable as...