mirror of
https://github.com/QuasarApp/QtAndroidTools.git
synced 2025-04-29 14:34:32 +00:00
75 lines
1.6 KiB
QML
75 lines
1.6 KiB
QML
import QtQuick 2.12
|
|
import QtQuick.Controls 2.12
|
|
import QtQuick.Dialogs 1.3
|
|
import QtAndroidTools 1.0
|
|
|
|
ScrollablePage {
|
|
id: page
|
|
padding: 20
|
|
|
|
Column {
|
|
anchors.fill: parent
|
|
spacing: 5
|
|
|
|
Label {
|
|
font.bold: true
|
|
font.pixelSize: 15
|
|
text: "DataLocation:"
|
|
}
|
|
Label {
|
|
font.pixelSize: 15
|
|
text: QtAndroidSystem.dataLocation
|
|
}
|
|
|
|
Label {
|
|
font.bold: true
|
|
font.pixelSize: 15
|
|
text: "ConfigLocation:"
|
|
}
|
|
Label {
|
|
font.pixelSize: 15
|
|
text: QtAndroidSystem.configLocation
|
|
}
|
|
|
|
Label {
|
|
font.bold: true
|
|
font.pixelSize: 15
|
|
text: "DownloadLocation:"
|
|
}
|
|
Label {
|
|
font.pixelSize: 15
|
|
text: QtAndroidSystem.downloadLocation
|
|
}
|
|
|
|
Label {
|
|
font.bold: true
|
|
font.pixelSize: 15
|
|
text: "MusicLocation:"
|
|
}
|
|
Label {
|
|
font.pixelSize: 15
|
|
text: QtAndroidSystem.musicLocation
|
|
}
|
|
|
|
Label {
|
|
font.bold: true
|
|
font.pixelSize: 15
|
|
text: "MoviesLocation:"
|
|
}
|
|
Label {
|
|
font.pixelSize: 15
|
|
text: QtAndroidSystem.moviesLocation
|
|
}
|
|
|
|
Label {
|
|
font.bold: true
|
|
font.pixelSize: 15
|
|
text: "PicturesLocation:"
|
|
}
|
|
Label {
|
|
font.pixelSize: 15
|
|
text: QtAndroidSystem.picturesLocation
|
|
}
|
|
}
|
|
}
|