FluentUI/src/controls/FluDivider.qml

15 lines
238 B
QML
Raw Normal View History

2023-03-30 21:52:55 +08:00
import QtQuick
import FluentUI
2023-02-28 18:29:00 +08:00
Rectangle {
2023-03-28 21:37:10 +08:00
color: FluTheme.dark ? Qt.rgba(45/255,45/255,45/255,1) : Qt.rgba(226/255,230/255,234/255,1)
2023-02-28 18:29:00 +08:00
2023-03-28 17:53:46 +08:00
Behavior on color{
ColorAnimation {
duration: 300
}
}
2023-02-28 18:29:00 +08:00
}