blob: 813286495b5d5bb685fe17be3c94a697bda47054 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
import QtQuick 2.15
import QtQuick.Controls 2.15
import QtQuick.Layouts 1.12
Page {
id: pageView
property alias backButton: backButton
header: ToolBar {
background: Rectangle {
color: "transparent"
}
RowLayout {
ToolButton {
id: backButton
display: AbstractButton.IconOnly
highlighted: true
icon.name: "back-button"
icon.source: "../icons/arrow-back-24px.svg"
}
}
}
}
/*##^##
Designer {
D{i:0;autoSize:true;height:480;width:640}
}
##^##*/
|