mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 22:06:25 +00:00
9389ee256e
This commit moves the original `AccountSelector` into StatusQ and makes it a `StatusAccountSelector`. The API has been preserved. The only difference is that it's internally relying completely on `StatusQ.Core.Theme` and `StatusQ.Controls` components instead. Usage: ```qml import StatusQ.Controls 0.1 StatusAccountSelector { accounts: ListModel { ListElement { name: "Pascal" address: "0x1234567891011" iconColor: "red" balance: "0" walletType: "generated" assets: [] fiatBalance: "1199.02" } ListElement { name: "Boris" address: "0x123" iconColor: "red" balance: "0" walletType: "generated" assets: [] fiatBalance: "0" } ListElement { name: "Alexandra" address: "0x123" iconColor: "yellow" balance: "0" walletType: "generated" assets: [] fiatBalance: "0" } ListElement { name: "Khushboo" address: "0x123" iconColor: "blue" balance: "0" walletType: "generated" assets: [] fiatBalance: "0" } } } ``` Closes #435