summaryrefslogtreecommitdiff
path: root/widgets/BoxLayout.qml
diff options
context:
space:
mode:
Diffstat (limited to 'widgets/BoxLayout.qml')
-rw-r--r--widgets/BoxLayout.qml16
1 files changed, 0 insertions, 16 deletions
diff --git a/widgets/BoxLayout.qml b/widgets/BoxLayout.qml
deleted file mode 100644
index d000bda..0000000
--- a/widgets/BoxLayout.qml
+++ /dev/null
@@ -1,16 +0,0 @@
-import "root:/config"
-import QtQuick.Layouts
-
-GridLayout {
- property bool vertical: parent.vertical ?? false // Propagate from parent
- property bool homogenous: false
- property int spacing: Appearance.spacing.small
-
- flow: vertical ? GridLayout.TopToBottom : GridLayout.LeftToRight
- uniformCellWidths: homogenous || vertical
- uniformCellHeights: homogenous || !vertical
- rows: vertical ? -1 : 1
- columns: vertical ? 1 : -1
- rowSpacing: spacing
- columnSpacing: spacing
-}