This repository has been archived on 2022-08-16. You can view files and clone it, but cannot push or open issues or pull requests.
fanny-app/LoginPage.qml
2018-06-21 08:47:09 +02:00

32 lines
499 B
QML

import QtQuick 2.0
import QtQuick.Controls 2.2
Page {
id: root
anchors.fill: parent
Label {
text: qsTr("You are on login")
anchors.centerIn: parent
}
BusyIndicator {
id: busyIndicator
visible: true
x: 40
y: 49
}
Button {
text: "main"
height: 30
width: 50
onClicked: {
var ret = _cppServerConn.login();
root.StackView.view.push("MainPage.qml")
}
}
}