status-desktop/ui/StatusQ/sandbox
Pascal Precht 368ede5645 feat(StatusQ.Components): introduce `StatusAddress` component
This introduces a `StatusAddress` component which renders an address
and can be made `expandable` by applying a `width`:

```qml
import StatusQ.Components 0.1

// Simple case
StatusAddress {
    text: "0x9ce0056c5fc6bb9459a4dcfa35eaad8c1fee5ce9"
}

// Expandable case
Item {
    width: 200
    height: childrenRect.height
    StatusAddress {
        text: "0x9ce0056c5fc6bb9459a4dcfa35eaad8c1fee5ce9"
        expandable: true
        width: parent.width
    }
}

```

Closes #430
2022-09-21 18:20:06 +02:00
..
android
dictionaries feat(Spellchecking): Add dictionaries 2022-09-21 18:20:05 +02:00
scripts
Buttons.qml
Controls.qml feature(StatusSelectableText): Added a selectable text component (#431) 2022-09-21 18:20:05 +02:00
DemoApp.qml refactor(StatusModal): Remove custom content property 2022-09-21 18:20:03 +02:00
Icons.qml
Layout.qml
ListItems.qml feat(StatusDescriptionListItem): introduce support for `value` 2022-09-21 18:20:03 +02:00
Models.qml
Others.qml
Popups.qml feat(StatusModal): Add edit avatar button 2022-09-21 18:20:06 +02:00
StatusAccountSelectorPage.qml feat(StatusQ.Controls): introduce `StatusAccountSelector` component 2022-09-21 18:20:06 +02:00
StatusAddressPage.qml feat(StatusQ.Components): introduce `StatusAddress` component 2022-09-21 18:20:06 +02:00
StatusChatInfoToolBarPage.qml
StatusExpandableSettingsItemPage.qml feat(StatusExpandableItem): Refactored the StatusExpandableSettingsItem to support different types 2022-09-21 18:20:03 +02:00
StatusInputPage.qml feat(StatusBaseInput): introduce `component` property 2022-09-21 18:20:03 +02:00
StatusPopupMenuPage.qml
StatusSelectPage.qml feat(StatusQ.Controls): introduce `StatusSelect` 2022-09-21 18:20:06 +02:00
StatusTabSwitchPage.qml feat(StatusQ.Controls): introduce StatusSwitchTabBar and StatusSwitchTabButton 2022-09-21 18:20:03 +02:00
ThemeSwitch.qml
handler.cpp
handler.h
main.cpp
main.qml feat(StatusQ.Components): introduce `StatusAddress` component 2022-09-21 18:20:06 +02:00
qml.qrc feat(StatusExpandableSettingsItem): Added new component for wallet settings 2022-09-21 18:20:03 +02:00
sandbox.pro feat(Spellchecking): Add dictionaries 2022-09-21 18:20:05 +02:00
sandboxapp.cpp feat(Spellchecker): Add Spellchecker class 2022-09-21 18:20:04 +02:00
sandboxapp.h
spellchecker.cpp fix: Sandbox doesn't build on Linux machines 2022-09-21 18:20:05 +02:00
spellchecker.h feat(Spellchecker): Add Spellchecker class 2022-09-21 18:20:04 +02:00
statuswindow.cpp
statuswindow.h
statuswindow_mac.mm