Skip to content

Empty screen on iOS if WebView inside scrollable column #401

@alexdroid1210

Description

@alexdroid1210

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,
)
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions