cff836280f
* fix(StatusAccountSelector): Refactored and reimplemented using `StatusComboBox` * fix(StatusAssetSelector): Refactored and reimplemented using `StatusComboBox` * fix(StatusColorSelector): Reimplemented using `StatusComboBox` * fix(StatusCardPage): Replaced `StatusSelect` with `StatusComboBox`
18 lines
277 B
QML
18 lines
277 B
QML
import QtQuick 2.14
|
|
import QtQuick.Controls 2.14
|
|
import QtQuick.Layouts 1.14
|
|
|
|
import StatusQ.Core 0.1
|
|
import StatusQ.Core.Theme 0.1
|
|
import StatusQ.Controls 0.1
|
|
|
|
import Sandbox 0.1
|
|
|
|
Row {
|
|
spacing: 8
|
|
|
|
StatusColorSelector {
|
|
model: ["red", "blue", "green"]
|
|
}
|
|
}
|