mirror of
https://github.com/QuasarApp/QtAndroidTools.git
synced 2025-04-30 23:04:32 +00:00
72 lines
1.6 KiB
QML
72 lines
1.6 KiB
QML
|
|
||
|
import QtQuick 2.12
|
||
|
import QtQuick.Controls 2.12
|
||
|
import QtQuick.Dialogs 1.3
|
||
|
import QtAndroidTools 1.0
|
||
|
|
||
|
Page {
|
||
|
id: page
|
||
|
padding: 0
|
||
|
|
||
|
Column {
|
||
|
anchors.fill: parent
|
||
|
spacing: 5
|
||
|
|
||
|
Label {
|
||
|
font.bold: true
|
||
|
font.pixelSize: 15
|
||
|
text: "Id:"
|
||
|
}
|
||
|
Label {
|
||
|
font.pixelSize: 15
|
||
|
text: QtAndroidGoogleAccount.lastSignedInAccount.id
|
||
|
}
|
||
|
|
||
|
Label {
|
||
|
font.bold: true
|
||
|
font.pixelSize: 15
|
||
|
text: "DisplayName:"
|
||
|
}
|
||
|
Label {
|
||
|
font.pixelSize: 15
|
||
|
text: QtAndroidGoogleAccount.lastSignedInAccount.displayName
|
||
|
}
|
||
|
|
||
|
Label {
|
||
|
font.bold: true
|
||
|
font.pixelSize: 15
|
||
|
text: "Email:"
|
||
|
}
|
||
|
Label {
|
||
|
font.pixelSize: 15
|
||
|
text: QtAndroidGoogleAccount.lastSignedInAccount.email
|
||
|
}
|
||
|
|
||
|
Label {
|
||
|
font.bold: true
|
||
|
font.pixelSize: 15
|
||
|
text: "FamilyName:"
|
||
|
}
|
||
|
Label {
|
||
|
font.pixelSize: 15
|
||
|
text: QtAndroidGoogleAccount.lastSignedInAccount.familyName
|
||
|
}
|
||
|
|
||
|
Label {
|
||
|
font.bold: true
|
||
|
font.pixelSize: 15
|
||
|
text: "GivenName:"
|
||
|
}
|
||
|
Label {
|
||
|
font.pixelSize: 15
|
||
|
text: QtAndroidGoogleAccount.lastSignedInAccount.givenName
|
||
|
}
|
||
|
|
||
|
Button {
|
||
|
anchors.horizontalCenter: parent.horizontalCenter
|
||
|
text: "sigIn"
|
||
|
onClicked: QtAndroidGoogleAccount.signIn()
|
||
|
}
|
||
|
}
|
||
|
}
|