I have a Web view in my app and ActionBar hides a bottom part of Webview. What schould I do to fit my WebView to the screen above Action Bar?
Here is my QML fragment:
WebView {
id: webViewObj
visible: true
verticalAlignment: VerticalAlignment.Fill
horizontalAlignment: HorizontalAlignment.Fill
settings.viewport: {
"width": "device-width",
"height": "device-height",
"initial-scale": 1.0
}
...
}