2023-06-27 17:50:50 +00:00
|
|
|
import QtQuick 2.15
|
2023-02-17 11:53:18 +00:00
|
|
|
|
|
|
|
import StatusQ.Core 0.1
|
2023-06-27 17:50:50 +00:00
|
|
|
|
|
|
|
import AppLayouts.Communities.panels 1.0
|
2023-02-17 11:53:18 +00:00
|
|
|
|
|
|
|
StatusScrollView {
|
|
|
|
id: root
|
|
|
|
|
|
|
|
property int viewWidth: 560 // by design
|
|
|
|
|
2023-06-27 17:50:50 +00:00
|
|
|
property alias image: introPanel.image
|
|
|
|
property alias title: introPanel.title
|
|
|
|
property alias subtitle: introPanel.subtitle
|
|
|
|
property alias checkersModel: introPanel.checkersModel
|
|
|
|
|
2023-05-30 15:18:45 +00:00
|
|
|
padding: 0
|
2023-04-17 07:00:05 +00:00
|
|
|
|
2023-06-27 17:50:50 +00:00
|
|
|
IntroPanel {
|
|
|
|
id: introPanel
|
2023-02-17 11:53:18 +00:00
|
|
|
|
|
|
|
width: root.viewWidth
|
|
|
|
}
|
|
|
|
}
|