Alex Styl
11/12/2022, 10:37 AMDraget
11/12/2022, 7:34 PMAlex Styl
11/14/2022, 6:48 AMarekolek
11/14/2022, 5:31 PMonValueChange = ::onValueChange
in attached code for example
If I run this code and type “a” in first field, then type “b” in second field, the output shows “b”
Then if I type “c”, the output shows “a.bc”
If I change that line to use a lambda onValueChange = { onValueChange(it) }
then output shows “a.b” as soon as I type “b” in above example
Are local functions, or references, or references to local functions not supported in composables? Or this is some bug I found? Or I’m just doing something wrong?Nino
11/15/2022, 3:23 PMMoritz Post
11/15/2022, 4:22 PMNino
11/15/2022, 4:24 PMviewModel()
function for injection in Android, is there a similar approach in desktop ?Nino
11/15/2022, 4:58 PMbenkuly
11/16/2022, 3:21 PMKirill Grouchnikov
11/16/2022, 4:35 PMTimo Drick
11/19/2022, 12:18 AMxxfast
11/19/2022, 1:56 AMmaterial3:material3-window-size-class
?Alex Styl
11/19/2022, 6:44 AMshortcut, menu and console
do within the windows {}
scope of nativeDistributions {}
?Alex Styl
11/19/2022, 7:11 AMAlex Styl
11/19/2022, 7:12 AMAlex Styl
11/19/2022, 7:47 AMAleks Sek
11/19/2022, 9:15 PMDaniyar Mukhanov
11/21/2022, 5:14 AMandroidx.compose.foundation.VerticalScrollbar
can't be find in android. I am building shared ui for desktop/android and not sure how to handle this kind of problemVlad Ostaci
11/21/2022, 10:24 AMBox(
modifier = Modifier.onClick(
matcher = PointerMatcher.mouse(PointerButton.Secondary), // Right Mouse Button
onClick = {
println("Right Click")
}
)
) {
Text(text = "Right click on me", modifier = Modifier.align(Alignment.Center))
}
Casey Brooks
11/21/2022, 6:15 PMeygraber
11/22/2022, 12:43 AMAlex Styl
11/22/2022, 8:20 AMeygraber
11/23/2022, 7:27 PM@Preview
is there any way to get it to use Android Studio's compose preview?Raphael TEYSSANDIER
11/23/2022, 7:49 PMDraget
11/23/2022, 8:29 PMlhwdev
11/24/2022, 12:32 AMeygraber
11/24/2022, 4:38 AMconfigurations.configureEach {
resolutionStrategy {
eachDependency {
val isCompiler = requested.group.endsWith("compiler")
if(requested.group.startsWith("androidx.compose")) {
if(!isCompiler) {
useVersion(versionOverride)
}
}
}
}
}
Now that Jetpack Compose provides a BOM, what would be the best way to do this?
Any chance that Jetbrains Compose can expose a property for setting the BOM version to use?smallshen
11/25/2022, 6:14 AMczuckie
11/25/2022, 5:08 PMCody Mikol
11/26/2022, 10:30 PM