diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-05-08 16:23:55 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-05-08 16:23:55 +0800 |
commit | 9b6964c5db2ff46fb9f604dcb0ecd5ec86942c11 (patch) | |
tree | ff960e9a37ded8c4dde961cca880fde59af4dd16 /Page.qml | |
parent | af550776635edbdf850ba731280d381b1044797c (diff) |
Page & ToolBar
Diffstat (limited to 'Page.qml')
-rw-r--r-- | Page.qml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Page.qml b/Page.qml new file mode 100644 index 0000000..5087484 --- /dev/null +++ b/Page.qml @@ -0,0 +1,22 @@ +import QtQuick 2.15 +import QtQuick.Templates 2.15 +import Bootstrap 5.3 + +Page { + id: control + implicitWidth: Math.max(implicitBackgroundWidth + + leftInset + rightInset, + contentWidth + leftPadding + rightPadding, + implicitHeaderWidth, + implicitFooterWidth) + implicitHeight: Math.max(implicitBackgroundHeight + + topInset + bottomInset, + contentHeight + topPadding + bottomPadding + + (implicitHeaderHeight > 0 + ? implicitHeaderHeight + spacing : 0) + + (implicitFooterHeight > 0 + ? implicitFooterHeight + spacing : 0)) + background: Rectangle { + color: control.Bootstrap.bodyBg + } +} |