Bump to somewhat newer version of Compose BOM

This commit is contained in:
arkon
2023-05-12 18:10:03 -04:00
parent f70d5ea976
commit ce81b76150
2 changed files with 4 additions and 4 deletions

View File

@ -114,7 +114,7 @@ fun WebViewScreenContent(
) { contentPadding ->
val webClient = remember {
object : AccompanistWebViewClient() {
override fun onPageStarted(view: WebView?, url: String?, favicon: Bitmap?) {
override fun onPageStarted(view: WebView, url: String?, favicon: Bitmap?) {
super.onPageStarted(view, url, favicon)
url?.let { onUrlChange(it) }
}