hi all, does anyone know how i can remove the padd...
# compose
o
hi all, does anyone know how i can remove the padding above the keyboard (see image) in a WebView text input. here's the code i have:
Copy code
Column(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:
Copy code
modifier = Modifier.padding(WindowInsets.statusBars.asPaddingValues()).fillMaxSize()
w
The TextField is composable or webview?
o
it is a text input in a webview