David Herman
David Herman
See also: https://developer.android.com/reference/kotlin/androidx/compose/foundation/layout/package-summary#Spacer(androidx.compose.ui.Modifier)
If you rename a repo, it can be really tricky to keep the conf.yaml in sync. There should be some way that Kobweb informs you about this stuff if your...
Specifically, `org.xml.sax.SAXParseException; The element type "link" must be terminated by the matching end-tag "".` --- **Expected**: `kotlinx.html` can receive unclosed `` tags in the `` element. **Actual**: The `` element,...
Specifically, I think you can change this: ```kotlin ServiceLoader.load(ClassMappingTypeService::class.java) ``` to this: ```kotlin ServiceLoader.load(ClassMappingTypeService::class.java, ClassMappingTypeService::class.java.classLoader) // ^ or KMongo::class.java.classLoader, or whatever ``` For comparsion, look at what Jetbrains Exposed does...
Kotlin/Native support for Kotter currently includes Mac, Linux, and Windows targets. This bug is added as a way for people to file requests for native targets that Kotter doesn't yet...
This was a feature request from a user, who shared a way you can change fonts on Windows: ```kotlin actual fun changeConsoleFonts() { platform.posix.system("chcp 65001") memScoped { val fontName =...
To repro, run this on Windows (e.g. in powershell): ``` section { for (i in 0..50) { // or larger if necessary textLine("Line #${i + 1}") } input() }.runUntilInputEntered() ```...
Basically, how to use the `kotterx.test` library.
Currently, we have implemented a method for creating OSC links with the following signature: ``` fun RenderScope.link(uri: URI, block: RenderScope.() -> Unit) { ... } ``` which you could call...