Seeking advice on how to add a QML Menu component to the top of all views in order to achieve a cohesive look and feel similar to that of a typical webpage menu. Any suggestions on how I can accomplish this?
import QtQuick 1.0
Row {
width: 500
height: 50
anchors.centerIn: parent
spacing: parent.width/6
Button {
id: loadButton
text: qsTr("Menu")
}
Button {
id: saveButton
text: qsTr("Profile")
}
Button {
id: exitButton
text: qsTr("View Products")
}
}