diff options
Diffstat (limited to 'gui/components/Preferences.qml')
-rw-r--r-- | gui/components/Preferences.qml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gui/components/Preferences.qml b/gui/components/Preferences.qml new file mode 100644 index 0000000..e5c4828 --- /dev/null +++ b/gui/components/Preferences.qml @@ -0,0 +1,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") + } + } +} |