import QtQuick import QtQuick.Controls import QtQuick.Layouts import QtQuick.Controls.Material Page { id: notesPage width: SwipeView.view.width height: SwipeView.view.height header: ToolBar { background: Rectangle { color: Material.background } RowLayout { anchors.fill: parent ToolButton { id: sortButton icon.source: `data:image/svg+xml;utf8,` icon.color: Material.foreground icon.height: 10 icon.width: 10 Layout.alignment: Qt.AlignRight ToolTip.visible: pressed ToolTip.text: "Work in progress" } } } SiteInConstruction {} }