mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-13 07:06:58 +00:00
Usage: ```qml StatusWalletColorSelect { model: Theme.palette.accountColors } ``` Closes #467
18 lines
287 B
QML
18 lines
287 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
|
|
|
|
Column {
|
|
spacing: 8
|
|
|
|
StatusWalletColorSelect {
|
|
model: Theme.palette.accountColors
|
|
}
|
|
}
|