From cd1d46a26b923260b6c87cc93a0723b8166c609e Mon Sep 17 00:00:00 2001 From: "kali kaneko (leap communications)" Date: Fri, 27 Aug 2021 19:45:41 +0200 Subject: [ui] refactor ui --- gui/components/Preferences.qml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 gui/components/Preferences.qml (limited to 'gui/components/Preferences.qml') 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") + } + } +} -- cgit v1.2.3