You can create any screen with a scrollable column, and if you have a WebView inside this column in iOS, you will see nothing
Column(
modifier = Modifier
.fillMaxSize()
.verticalScroll(state = rememberScrollState()),
) {
val webViewState = rememberWebViewState(
url = state.url.orEmpty(),
)
WebView(
modifier = Modifier
.fillMaxSize(),
state = webViewState,
captureBackPresses = false,
)
}
You can create any screen with a scrollable column, and if you have a WebView inside this column in iOS, you will see nothing
Column(
modifier = Modifier
.fillMaxSize()
.verticalScroll(state = rememberScrollState()),
) {
val webViewState = rememberWebViewState(
url = state.url.orEmpty(),
)
WebView(
modifier = Modifier
.fillMaxSize(),
state = webViewState,
captureBackPresses = false,
)
}