darkmoon_uk
Nat Strangerweather
@Composable fun ShowDropDown( openDropDown: MutableState<Boolean>, text: List<String>, destination: List<DirectionDestination>, navigator: DestinationsNavigator, ) { DropdownMenu( expanded = openDropDown.value, onDismissRequest = { openDropDown.value = false }, ) { text.zip(destination) .forEach { DropdownMenuItem(onClick = { navigator.navigate(it.second) }, text = { Text(it.first) }) } } }
Tolriq
##### 100% (220/220) tasks have been compiled with Kotlin 2.0 #####
w: Kapt currently doesn't support language version 2.0+. Falling back to 1.9.
Ayfri
kevin.cianfarini
Karthick
zsperske
LazyColumn
AndroidView
WebView
LazyColumn { AndroidView( factory = { WebView() } ) //other stuff }
Edoardo Luppi
yarn.lock
gradle kotlinUpgradeYarnLock
00:02:51.294 FAILURE: Build failed with an exception. 00:02:51.294 00:02:51.294 * What went wrong: 00:02:51.294 Execution failed for task ':kotlinStoreYarnLock'. 00:02:51.294 > yarn.lock was changed. Run the `kotlinUpgradeYarnLock` task to actualize yarn.lock file
kotlinUpgradeYarnLock
mkrussel
buildSrc
kotlin-dsl
An exception occurred applying plugin request [id: 'org.gradle.kotlin.kotlin-dsl', version: '2.3.3'] > Failed to apply plugin class 'org.jetbrains.kotlin.gradle.plugin.KotlinPluginWrapper'. > Could not create an instance of type org.jetbrains.kotlin.gradle.dsl.KotlinJvmProjectExtension. > Companion
jcechace
A modern programming language that makes developers happier.