1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
import QtQuick 2.9 import QtQuick.Controls 2.2 Page { title: qsTr("Preferences") Column { spacing: 2 topPadding: root.width * 0.2 leftPadding: root.width * 0.15 rightPadding: root.width * 0.15 Label { text: qsTr("Anti-censorship") font.bold: true } CheckBox { checked: false text: qsTr("Use Bridges") } } }