mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 19:08:58 +03:00
32 lines
No EOL
793 B
QML
32 lines
No EOL
793 B
QML
import QtQuick 2.5
|
|
import QtQuick 2.12
|
|
import QtQuick.Controls 2.12
|
|
import im.nheko 1.0
|
|
|
|
Switch {
|
|
id: toggleButton
|
|
|
|
indicator: Item {
|
|
implicitWidth: 48
|
|
implicitHeight: 26
|
|
|
|
Rectangle {
|
|
height: parent.height/2
|
|
radius: height/2
|
|
width: parent.width - height
|
|
x: radius
|
|
y: parent.height / 2 - height / 2
|
|
color: toggleButton.checked ? "skyblue" : "grey"
|
|
border.color: "#cccccc"
|
|
}
|
|
|
|
Rectangle {
|
|
x: toggleButton.checked ? parent.width - width : 0
|
|
width: parent.height
|
|
height: width
|
|
radius: width/2
|
|
color: toggleButton.down ? "whitesmoke" : "whitesmoke"
|
|
border.color: "#999999"
|
|
}
|
|
}
|
|
} |