Orlando
07/17/2025, 7:50 PMColumn(Modifier.fillMaxSize()) {
WebView(
state = webViewState,
modifier = Modifier.windowInsetsPadding(WindowInsets.safeDrawing).fillMaxSize()
)
}
if i use the following modifier, the keyboard covers the webview's text input:
modifier = Modifier.padding(WindowInsets.statusBars.asPaddingValues()).fillMaxSize()
wwalkingg
07/18/2025, 2:06 AMOrlando
07/18/2025, 4:01 PM