Код: Выделить всё
Column(
modifier = Modifier
.fillMaxHeight()
) {
AndroidView(
modifier = Modifier.background(color = MaterialTheme.customColorsPalette.colorF6F7FC),
factory = {
WebView(it).apply {
layoutParams = ViewGroup.LayoutParams(
ViewGroup.LayoutParams.MATCH_PARENT,
ViewGroup.LayoutParams.MATCH_PARENT
)
webViewClient = WebViewClient()
// Enable JavaScript if needed
settings.javaScriptEnabled = true
settings.builtInZoomControls = true
settings.displayZoomControls = false
settings.useWideViewPort = true
settings.loadWithOverviewMode = true
settings.setSupportZoom(true)
isVerticalScrollBarEnabled = true
isHorizontalScrollBarEnabled = true
loadUrl(url)
}
},
update = {
it.loadUrl(url)
}
)
}
Подробнее здесь: https://stackoverflow.com/questions/788 ... id-compose