mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-14 08:36:39 +00:00
cecfd7f8e8
Demo controls migrations to Qt6 POC for an application layout with isolated components Closes: #5902
13 lines
345 B
QML
13 lines
345 B
QML
import QtQml
|
|
|
|
/*!
|
|
An application section with button and content view
|
|
*/
|
|
QtObject {
|
|
required property NavigationBarButtonComponent navButton
|
|
required property ApplicationContentView content
|
|
|
|
component NavigationBarButtonComponent: NavigationBarButton {}
|
|
component ApplicationContentViewComponent: ApplicationContentView {}
|
|
}
|