Fixed
Status Update
Comments
ry...@google.com <ry...@google.com>
mo...@google.com <mo...@google.com>
ho...@google.com <ho...@google.com>
os...@google.com <os...@google.com>
os...@google.com <os...@google.com> #2
I simpler example would be appreciated. I tried to download the pull request and build it but it relies on, for example, `rustc` to be installed which I don't have installed on my compose development machine.
Does the program work without the compiler switch. That is, is `"-P", "plugin:androidx.compose.compiler.plugins.kotlin:experimentalStrongSkipping=true",` required to reproduce or is just changing the runtime enough?
Does the program work without the compiler switch. That is, is `"-P", "plugin:androidx.compose.compiler.plugins.kotlin:experimentalStrongSkipping=true",` required to reproduce or is just changing the runtime enough?
ap...@google.com <ap...@google.com> #3
Yeah, changing compiler switch(enable/disable StrongSkipping, enable/disable nonSkippingGroup) has no effect, only changing runtime make sense.
Sorry for that, I will try to extract an example when I'm free.
Sorry for that, I will try to extract an example when I'm free.
pr...@google.com <pr...@google.com> #4
I have find a sample code to reproduce that
setContent {
val dialogState = remember { DialogState() }
dialogState.Intercept()
LaunchedEffect(Unit) {
delay(1000)
dialogState.bgWork {
delay(5000)
}
dialogState.showSelectActions {
onSelect("a") {
}
onSelect("b") {
}
}
}
}
You can find implementation of DialogState
here
Description
Jetpack Compose release version: 1.1.0
Android Studio Build: Bumblebee 2021.1.1 Patch 1
Kotlin version: 1.6.10
Steps to Reproduce:
Then the result is shown in attachment: the ConstraintLayout do not apply the fillMaxWidth modifier and it's always centered in parent.