Hi everyone!
I have the strange problem with “white space” on the bottom of WebView component. Please see the image:
The code of WebView:
Rectangle {
id: browserView
width: parent.width
height: parent.height - headerPanelItem.height
color: "red"
clip: true
WebView {
id: webView
anchors.fill: browserView
boundsBehavior: Flickable.StopAtBounds
url: (blogItem !== null) ? blogItem.link : ""
}
}
Could you help me to solve this strange issue? Thanks for the any help!
↧