Render
fun Render(modifier: Modifier = Modifier, content: String = "", asset: String = "", verticalScrolling: Boolean = false, color: Color = MaterialTheme.colorScheme.onSurface, primaryColor: Color = MaterialTheme.colorScheme.primary, linkColor: Color = MaterialTheme.colorScheme.secondary, backgroundColor: Color = MaterialTheme.colorScheme.surface, assets: Map<String, ByteString>? = null)
Render the content given by content or given as an asset name asset (one or the other must be given).
Links in the content open in an external browser. Resources (such as images) can only be loaded from the app's assets
folder.