You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

75 lines
1.7 KiB

10 months ago
import QtQuick 2.13
import "./SepantaUiKit"
10 months ago
import "./SepantaUiKit/SKBtn"
import "./SepantaUiKit/SKBtnIcon"
import "./SepantaUiKit/SKMultiOption"
import "./SepantaUiKit/aCommon"
10 months ago
import "./SepantaUiKit/SKDropDown"
import "./SepantaUiKit/SKCheckBox"
import "./SepantaUiKit/SKMultiOptionWithDropDown"
import "./SepantaUiKit/SKTextField"
import "./SepantaUiKit/SkScrollView"
import "./SepantaUiKit/SKPathSelector"
10 months ago
Item {
anchors.fill: parent
10 months ago
Column {
anchors.fill: parent
spacing: 30
10 months ago
anchors.margins: 20
10 months ago
Row {
spacing: 20
SKBtn {
text: "Enable P"
}
SKBtn {
text: "Disable P"
isEnable: false
}
SKBtn {
text: "Enable S"
buttonType: Setting.Secondary
}
SKBtn {
text: "Disable S"
isEnable: false
buttonType: Setting.Secondary
}
SKBtn {
text: "Enable T"
buttonType: Setting.Tertiary
}
SKBtn {
text: "Disable T"
isEnable: false
buttonType: Setting.Tertiary
}
10 months ago
}
10 months ago
Row {
10 months ago
spacing: 20
10 months ago
SKMultiOption {}
10 months ago
10 months ago
SKDropDown {}
SKMultiOptionWithDropDown {}
}
Row {
spacing: 20
SKTextField {
text: "Pouya"
}
SKCheckBox {}
10 months ago
}
Row {
spacing: 20
SkScrollView {
}
SKPathSelector {
10 months ago
}
}
10 months ago
}
10 months ago
}