mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-10 06:16:32 +00:00
cea1d68308
Closes #41
29 lines
473 B
QML
29 lines
473 B
QML
import QtQuick 2.14
|
|
import QtQuick.Controls 2.14
|
|
|
|
import StatusQ.Controls 0.1
|
|
|
|
Row {
|
|
id: themeSwitch
|
|
signal checkedChanged()
|
|
|
|
spacing: 2
|
|
|
|
Text {
|
|
text: "🌤"
|
|
font.pixelSize: 15
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
}
|
|
|
|
StatusSwitch {
|
|
onCheckedChanged: themeSwitch.checkedChanged()
|
|
}
|
|
|
|
Text {
|
|
text: "🌙"
|
|
font.pixelSize: 15
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
}
|
|
}
|
|
|