Fixed
Status Update
Comments
ap...@google.com <ap...@google.com> #2
A couple of questions:
1. Have you saw crash in real device or only in simulators?
2. Do you use dynamic feature for language ID?
1. Have you saw crash in real device or only in simulators?
2. Do you use dynamic feature for language ID?
pr...@google.com <pr...@google.com> #3
Tested on Android 12 Emulator with custom executor, but cannot repro this issue.
Description
Jetpack Compose version: 1.7.0 SNAPSHOT
Jetpack Compose component used: Animation
SharedTransitionScope
is currently a class, but it's used as a receiver for shared element modifiers. I'm trying to create my own scope type for navigation within my app, exposing things such as:AnimatedVisibilityScope
SharedTransitionScope
I'd like to make my scope type implement
SharedTransitionScope
, but since that's a class rather than an interface, I cannot. It'd be nice if that were an interface.