現在、キーボードがポップアップをカバーしているため、キーボードがアクティブなときにポップアップを移動したいと思います。ポップアップを適切に移動するためにキーボードのサイズを知るにはどうすればよいですか?
Popup {
id: popupName
contentWidth: parent.width/2
contentHeight: parent.height/2
x: parent.width/2 - popupName.width/2
y: parent.height/2 - popupName.height/2
background: Rectangle {
color: "#424242"
}