diff options
-rw-r--r-- | Eduport.qml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Eduport.qml b/Eduport.qml new file mode 100644 index 0000000..5bdd9a7 --- /dev/null +++ b/Eduport.qml @@ -0,0 +1,8 @@ +import QtQuick 2.15 +import QtQuick.Controls 2.15 + +GridView { + cellWidth: parent.width / 2 + cellHeight: cellWidth + ScrollBar.vertical: ScrollBar {} +} |