Rihards
sheetState.show()
scope.launch { sheetState.animateTo(ModalBottomSheetValue.HalfExpanded) }
Ben Powell
Tom Truyen
e: androidx.compose.compiler.plugins.kotlin.IncompatibleComposeRuntimeVersionException: The Compose Compiler requires the Compose Runtime to be on the class path, but none could be found. The compose compiler plugin you are using (version 1.5.14) expects a minimum runtime version of 1.0.0.
org.jetbrains.kotlin.plugin.compose
darkmoon_uk
PHondogo
iroyo
@Preview @Preview(fontScale = 3f) @Composable fun TestCheckbox2() { Row(verticalAlignment = Alignment.CenterVertically) { Icon( painter = painterResource(id = R.drawable.ic_checkbox_checked), contentDescription = null, ) Text( text = "Line 1\nline2", ) } }
voben
every {} returns something
every {} answers {something}
Muhammad Talha
Expression 'jar' cannot be invoked as a function. The function 'invoke()' is not found
java
plugins
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile plugins { kotlin("jvm") version "1.6.21" java application } group = "me.talha" version = "1.0-SNAPSHOT" repositories { mavenCentral() } dependencies { testImplementation(kotlin("test")) } tasks.test { useJUnitPlatform() } tasks.withType<KotlinCompile>() { kotlinOptions.jvmTarget = "11" } application { mainClass.set("MainKt") } jar { manifest { attributes 'Main-Class': 'MainKt' } }
Mark
FlowRow
xxfast
A modern programming language that makes developers happier.