mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-21 20:09:37 +00:00
cecfd7f8e8
Demo controls migrations to Qt6 POC for an application layout with isolated components Closes: #5902
21 lines
349 B
QML
21 lines
349 B
QML
import QtQuick
|
|
import QtQuick.Layouts
|
|
import QtQuick.Controls
|
|
|
|
import Status.Application.Navigation
|
|
import Status.Controls.Navigation
|
|
|
|
NavigationBarSection {
|
|
id: root
|
|
|
|
implicitHeight: walletButton.implicitHeight
|
|
|
|
StatusNavigationButton {
|
|
id: walletButton
|
|
|
|
anchors.fill: parent
|
|
|
|
// TODO: icon, tooltip ...
|
|
}
|
|
}
|