Chachako
04/30/2021, 6:45 AMSmorg
04/30/2021, 7:29 AMMaxUt
04/30/2021, 9:34 AMPaul Woitaschek
04/30/2021, 11:06 AMViewTreeLifecycleOwner not set for this ComposeView
This is because the transition manager detaches the view for transitions:
at android.view.ViewGroupOverlay.add(ViewGroupOverlay.java:72)
at androidx.transition.ViewGroupOverlayApi18.add(ViewGroupOverlayApi18.java:48)
at androidx.transition.Visibility.onDisappear(Visibility.java:431)
at androidx.transition.Visibility.createAnimator(Visibility.java:257)
at androidx.transition.Transition.createAnimators(Transition.java:744)
at androidx.transition.Transition.playTransition(Transition.java:1808)
at androidx.transition.TransitionManager$MultiListener.onPreDraw(TransitionManager.java:300)
Is this a known thing?Daniele B
04/30/2021, 12:33 PMNavHost
composables, is there a way to tell Navigation to show them next to each other on a bigger screen in landscape?Semyon Zadorozhnyi
04/30/2021, 2:26 PMrobnik
04/30/2021, 4:43 PMVince Rickey
04/30/2021, 5:18 PMMichal Klimczak
04/30/2021, 6:09 PMThis version (1.0.0-alpha13) of the Compose Compiler requires Kotlin version 1.4.31 but you appear to be using Kotlin version 1.4.32 which is not known to be compatible. Please fix your configuration (orBut the version I'm using isbut don't say I didn't warn you!).suppressKotlinVersionCompatibilityCheck
1.0.0-beta03
. Also, when I had 1.0.0-beta01
it complained
This version (1.0.0-alpha13) of the Compose Compiler requires Kotlin version 1.4.30 but you appear to be using Kotlin version 1.4.32 which is not known to be compatible. Please fix your configuration (orSo it's still sayingbut don't say I didn't warn you!).suppressKotlinVersionCompatibilityCheck
(1.0.0-alpha13)
even though reports that it requires a different kotlin version.
Where do I even report that?Cicero
04/30/2021, 7:01 PMRavi
04/30/2021, 8:18 PMThis app is not compatible with your device
in playstore. I've seen multiple-apk approach but it might increase our release cycle complexity. Is there a way to retain older aab
to cater <21 api level? Also if we want to provide liteversion
to <21 is it possible ? Any help/suggestions would be appreciated.Nat Strangerweather
04/30/2021, 8:38 PMJohn O'Reilly
05/01/2021, 11:47 AMrsktash
05/01/2021, 1:01 PMSlackbot
05/01/2021, 1:29 PMColton Idle
05/01/2021, 2:28 PMcolorFilter = ColorFilter.tint(MyTheme.colors.onSurfaceWhiteColor)
Rudolf Tammekivi
05/01/2021, 2:32 PMandroid:fillColor="?attr/ferryOutside"
) . This allowed me to reuse the same SVG for different colored images. I am wondering if there is a way to do this in Compose and maybe there is a better way? I need to use multiple colors in the SVG, it seems like LocalContentColor is not suitable for this use.dewildte
05/01/2021, 5:58 PMe: This version (1.0.0-alpha13) of the Compose Compiler requires Kotlin version 1.4.30 but you appear to be using Kotlin version 1.4.31 which is not known to be compatible. Please fix your configuration (or `suppressKotlinVersionCompatibilityCheck` but don't say I didn't warn you!).
All my dependencies are 1.0.0-beta05
so this error seems impossible.
EDIT: FixedLilly
05/01/2021, 7:08 PM@Preview(device = Devices.PIXEL)
@Composable
private fun TestPreview() {
LazyColumn {
repeat(20) {
item {
val checkedState = remember { mutableStateOf(true) }
Checkbox(
checked = checkedState.value,
onCheckedChange = { checkedState.value = it }
)
Spacer(modifier = Modifier.height(24.dp))
Divider()
}
}
}
}
Adrian Landborn
05/02/2021, 9:15 AMShakil Karim
05/02/2021, 12:14 PMste
05/02/2021, 1:21 PMwidth(IntrinsicSize.Max)
and animateContentSize
intended to throw an exception (Can't represent a size of 2147483647 in Constraints
)? Code in threadNat Strangerweather
05/02/2021, 2:46 PMModifier
.onGloballyPositioned {
position.value = it.positionInParent()
}
which is incredibly useful but I would need the value as DpOffset rather than Offset. Is that conversion at all possible?Justin Tullgren
05/03/2021, 12:47 AMNavHost
composable which is the content
of a scaffold? Ex. The main screens should all have consistent bottomnav and topappbar but some screens need to go without and these screens are accessed from the main screen. Is this a nav subgraph situation, push the scaffold down into the screens, or something else I am missing? Thanks !Shivam Sethi
05/03/2021, 4:27 AMShivam Sethi
05/03/2021, 6:47 AMShakil Karim
05/03/2021, 9:05 AMMjahangiry75
05/03/2021, 10:58 AMNat Strangerweather
05/03/2021, 2:11 PMboardWidth
value elsewhere.clhols
05/03/2021, 2:40 PM