add simple example '.android-ssl-test'

This commit is contained in:
pls.153 2024-11-20 20:59:23 +01:00
parent c55b08ab6c
commit c6cd718ef2
18 changed files with 470 additions and 0 deletions

View file

@ -0,0 +1,15 @@
import QtQuick 2.15
import QtQuick.Controls 2.15
Item {
width: 300
height: 500
Label {
objectName: "label"
text: "downloading..."
anchors.centerIn: parent
font.pixelSize: 24
font.bold: true
}
}