2023-06-28 22:11:58 +00:00
|
|
|
import QtQuick 2.15
|
|
|
|
import QtQuick.Controls 2.15
|
|
|
|
|
|
|
|
import AppLayouts.Communities.controls 1.0
|
|
|
|
|
|
|
|
Page {
|
|
|
|
id: root
|
|
|
|
|
|
|
|
leftPadding: 64
|
|
|
|
topPadding: 16
|
|
|
|
|
|
|
|
property alias buttons: pageHeader.buttons
|
2023-06-30 14:36:46 +00:00
|
|
|
property alias subtitle: pageHeader.subtitle
|
2023-06-28 22:11:58 +00:00
|
|
|
|
|
|
|
background: null
|
|
|
|
|
|
|
|
header: SettingsPageHeader {
|
|
|
|
id: pageHeader
|
|
|
|
|
|
|
|
height: 44
|
|
|
|
leftPadding: 64
|
|
|
|
rightPadding: width - 560 - leftPadding
|
2023-06-30 14:36:46 +00:00
|
|
|
|
|
|
|
title: root.title
|
2023-06-28 22:11:58 +00:00
|
|
|
}
|
|
|
|
}
|