Stylianos Gakis
12/23/2021, 4:28 PMNurseyit Tursunkulov
12/23/2021, 4:35 PMVinay Gaba
12/23/2021, 6:42 PMAmrJyniat
12/23/2021, 7:27 PMNick
12/23/2021, 10:16 PMdraw
method, i’d like to draw a Composable
on that canvas
. Is this possible?Scott Kruse
12/24/2021, 1:37 AMAdib Faramarzi
12/24/2021, 12:19 PM.hoverable
a desktop-only modifier? It doesn't seem to work (isHoveredState
is always false even though a finger is pressing and hovering over the element)loloof64
12/25/2021, 5:11 PM@Composable
.
So I'm using SideEffect
, but it is not run at each screen update : so is there a better way ?
@Composable
fun MyComposable() {
SideEffect { checkDraw()}
MySubComposable()
}
Tim Malseed
12/26/2021, 12:44 AMcomposeTestRule.runOnUiThread {
backPressedDispatcher.onBackPressed()
}
But this works fine:
Espresso.pressBackUnconditionally()
raghunandan
12/26/2021, 11:37 AMziv kesten
12/26/2021, 2:35 PMstrokeWidth
, RadiusSize
, CheckboxSize
etc'.
However those properties are not public.
I could just copy the entire CheckBox Code into my project and expose those values to be mutable but the would mean introducing alot of code in my project.
is there a better way to customize these properties of CheckBox
in Jetpack Compose?Florian Walther (live streaming)
12/26/2021, 3:11 PMPendingIntent
, how would you make it navigate to a specific composable screen? Should I send an argument via the intent and let the activity navigate or is there a better way?lesincs
12/26/2021, 4:41 PMLazyListScope
?jeff
12/26/2021, 7:53 PMrsktash
12/27/2021, 4:02 AMMatti MK
12/27/2021, 9:51 AMonAppear
modifier, however, looks like there isn’t a similar option with Compose. I looked over the Animation
docs, but can’t seem to find a non-state based animation, which leads me to believe I need to have state that changes when the screen becomes visible?Shakil Karim
12/27/2021, 10:47 AMEduard Boloș
12/27/2021, 12:49 PMandroidx.compose.material
package when they are not in the androidx.compose.material3
one, and then manually pass the colors from the material3.MaterialTheme
? Or is there a more straightforward way which I am missing?Mikael Alfredsson
12/27/2021, 7:04 PM@Composable
fun Test(
content: @Composable () -> Unit
) {
Box(
Modifier.layout { measurable, constraints ->
layout(constraints.minWidth, constraints.minHeight){
val placeable = measurable.measure(constraints)
placeable.place(0,0)
}
}
) {
content()
}
}
@Preview
@Composable
fun TestPreview() {
Test(){
Text(text = "test")
}
}
Justin Yue
12/27/2021, 10:48 PMColton Idle
12/28/2021, 2:25 AMval currentOnUserLogIn by rememberUpdatedState(onUserLogIn)
miqbaldc
12/28/2021, 6:16 AMBottomSheetScaffold
this ways? code in 🧵Liangjun Sha
12/28/2021, 6:31 AM1.6.10
, Compose 1.1.0-rc01
and compose compiler to 1.1.0-rc02
, but I got the exception below, how can I fix it.😭 HELP!!!Ankit Shah
12/28/2021, 12:56 PMziv kesten
12/28/2021, 1:57 PMFlorian Walther (live streaming)
12/28/2021, 2:37 PMlaunchMode=singletTop
. I implemented deep links following the documentation.
Do deep links not handle onNewIntent
?Mikael Alfredsson
12/28/2021, 3:28 PMvalue
when the user isn’t touching it?rsktash
12/28/2021, 3:50 PMgeorgiy.shur
12/28/2021, 4:05 PMLazyColumn
is scrollable? Means if its content is longer than the container.Bradleycorn
12/28/2021, 5:27 PMInfiniteTransition
, or only the “regular” Transition
?Bradleycorn
12/28/2021, 5:27 PMInfiniteTransition
, or only the “regular” Transition
?Doris Liu
01/04/2022, 6:51 PM