mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 06:14:59 +00:00
- Created CODE_REVIEW.md for comprehensive code review documentation. - Updated 44 QML files to use modern versionless imports for QtQuick and QtQuick.Controls. - Removed debug console.log statements from App.qml for cleaner code. - Identified and documented minimal component implementations in CAutoGrid.qml and CEditorWrapper.qml, recommending enhancements for production readiness.
15 lines
291 B
QML
15 lines
291 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
|
|
GridView {
|
|
id: grid
|
|
property var images: []
|
|
model: images
|
|
cellWidth: 120
|
|
cellHeight: 120
|
|
delegate: Item {
|
|
width: grid.cellWidth; height: grid.cellHeight
|
|
Image { anchors.fill: parent; source: modelData }
|
|
}
|
|
}
|