Alisa/native/Test.qml

19 lines
408 B
QML
Raw Normal View History

2024-07-10 22:24:28 +02:00
import QtQuick 2.12
import QtQuick.Controls 2.12
import QtQuick.Controls.Universal 2.12
2024-07-10 15:00:00 +02:00
2024-07-10 22:24:28 +02:00
ApplicationWindow {
2024-07-10 15:00:00 +02:00
visible: true
2024-07-10 22:24:28 +02:00
Universal.theme: Universal.Dark
Universal.accent: Universal.Violet
2024-07-10 15:00:00 +02:00
2024-07-10 22:24:28 +02:00
Column {
anchors.centerIn: parent
2024-07-10 15:00:00 +02:00
2024-07-10 22:24:28 +02:00
RadioButton { text: qsTr("Small") }
RadioButton { text: qsTr("Medium"); checked: true }
RadioButton { text: qsTr("Large") }
2024-07-10 15:00:00 +02:00
}
}