diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2022-09-26 13:18:20 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2022-09-26 13:18:20 +0800 |
commit | ecc7f9e34177b647d1dfd98e51bc43ad035d7ff5 (patch) | |
tree | 88fe03460164d4707a5d476f9395daec9e71e81e | |
parent | a14c8a60c347a1497f7c4cc22203925f20c261e3 (diff) |
Main page with grid view
-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 {} +} |