11 lines
181 B
QML
11 lines
181 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
|
|
CheckDelegate {
|
|
Component.onCompleted: {
|
|
background.color = "white"
|
|
background.radius = 5
|
|
}
|
|
}
|