diff options
| author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2022-09-27 07:31:56 +0800 |
|---|---|---|
| committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2022-09-27 07:31:56 +0800 |
| commit | 2bc8b1d8351e037dc5accb8e4f18228191159551 (patch) | |
| tree | 61e27e01d587e33c36c85ec7b0069a37183fafc4 /GridMinimalView.ui.qml | |
| parent | 1cb729b0988a4b50e7aa822c3e60e03624acb113 (diff) | |
Rename again for consistencies/conventions/clarity
Diffstat (limited to 'GridMinimalView.ui.qml')
| -rw-r--r-- | GridMinimalView.ui.qml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/GridMinimalView.ui.qml b/GridMinimalView.ui.qml new file mode 100644 index 0000000..5956957 --- /dev/null +++ b/GridMinimalView.ui.qml @@ -0,0 +1,9 @@ +import QtQuick 2.15 +import QtQuick.Controls 2.15 + +GridView { + cellWidth: width < 576 ? parent.width : width < 768 ? parent.width / 2 + : width < 992 ? parent.width / 3 : parent.width / 4 + cellHeight: cellWidth * 1.3 + ScrollBar.vertical: ScrollBar {} +} |