Closed Coding-Meet closed 4 months ago
I try markdown implement in my Kotlin Multiplatform Project android, ios, desktop, wasm.
but not work this error show
Code: first i add dependency
App.kt
Box( Modifier.fillMaxSize() ) { Markdown( content = """ ### What's included 🚀 - Super simple setup - Cross-platform ready - Lightweight """.trimIndent(), colors = DefaultMarkdownColors( text = whiteColor, codeText = whiteColor, inlineCodeText = whiteColor, linkText = Color.Blue, codeBackground = lightBackgroundColor, inlineCodeBackground = lightBackgroundColor, dividerColor = Color.Gray ), typography = DefaultMarkdownTypography( TextStyle.Default, TextStyle.Default, TextStyle.Default, TextStyle.Default, TextStyle.Default, TextStyle.Default, TextStyle.Default, TextStyle.Default, TextStyle.Default, TextStyle.Default, TextStyle.Default, TextStyle.Default, TextStyle.Default, ), ) }
Which version of compose are you using?
1.5.4
Since 0.20.0 this library users 1.6.10 -> https://github.com/mikepenz/multiplatform-markdown-renderer/releases/tag/v0.20.0
thanks it works
I try markdown implement in my Kotlin Multiplatform Project android, ios, desktop, wasm.
but not work this error show
Code: first i add dependency
App.kt