mirror of
https://github.com/status-im/status-app.git
synced 2026-08-27 15:11:20 +00:00
18 lines
518 B
QML
18 lines
518 B
QML
import QtQml
|
|
|
|
QtObject {
|
|
id: root
|
|
|
|
required property var accountsModel
|
|
property string selectedAddress: ""
|
|
property bool showSavedAddresses: false
|
|
property bool showFollowingAddresses: false
|
|
property var totalCurrencyBalance
|
|
property bool balanceLoading: false
|
|
property bool accountBalanceNotAvailable: false
|
|
property string accountBalanceNotAvailableText: ""
|
|
|
|
readonly property bool showAllAccounts:
|
|
!showSavedAddresses && !showFollowingAddresses && !selectedAddress
|
|
}
|