mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-05-03 02:04:54 +00:00
765bd203a2
- 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.
9 lines
112 B
QML
9 lines
112 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
|
|
Rectangle {
|
|
color: "white"
|
|
radius: 4
|
|
border.color: "#ddd"
|
|
}
|