compose-webview icon indicating copy to clipboard operation
compose-webview copied to clipboard

A wrapper of WebView for Jetpack Compose

Results 9 compose-webview issues
Sort by recently updated
recently updated
newest added

I know we talked about this on the previous issue, but I figured I'd open it so that others using the library know that this is an open issue. But...

It seems that the other`@Composables` don't render properly when the webview is not fully loaded. here's a very simple example ```kotlin Column { val state = rememberWebViewState("https://github.com/KevinnZou/compose-webview") Text(text = "${state.pageTitle}")...

As previously stated [here](https://github.com/KevinnZou/compose-webview-multiplatform/issues/62), `navigator.loadHtml` does not work correctly, 'cause of the wrong order of parameters.

enhancement

The navigate forward functionality seems to be broken when capture back presses is disabled. This is my composable: ```kt @Composable fun BrowserScreen( navController: NavController, initialUrl: String, ) { val viewModel...

Opening a url to a pdf does not load the content on any platform. It can be reproduced on the main branch by changing the url to any url pointing...

I have fixed the scrolling and page responsiveness issue by obtaining the content height of our WebView page and adjusting the modifier size accordingly.

I am experiencing an issue where the WebView in my Android application does not respond to the system's dark mode settings. Despite the system dark mode being enabled, the WebView...

Good morning, I saw in the project README that the WebViewNavigator has the function to execute JavaScript calls, but I can't find it in the downloaded version '0.33.6'. Is it...

enhancement