mirror of
https://github.com/QRouland/UTPass.git
synced 2024-11-09 01:02:40 +00:00
29 lines
598 B
QML
29 lines
598 B
QML
import QtQuick 2.4
|
|
import Ubuntu.Components 1.3
|
|
import "headers"
|
|
|
|
Page {
|
|
header: StackHeader {
|
|
id: settingsHeader
|
|
title: i18n.tr('Settings')
|
|
}
|
|
|
|
Rectangle {
|
|
anchors.top: settingsHeader.bottom
|
|
anchors.bottom: parent.bottom
|
|
width: parent.width
|
|
color: "#FFF"
|
|
|
|
Flow {
|
|
spacing: 1
|
|
anchors.fill: parent
|
|
Text {
|
|
horizontalAlignment: Text.AlignHCenter
|
|
width: parent.width
|
|
height: units.gu(6)
|
|
text: "Settings"
|
|
}
|
|
}
|
|
}
|
|
}
|