Details
-
Suggestion
-
Resolution: Out of scope
-
P3: Somewhat important
-
None
Description
See the project attached to QDS-10770. It gets exported to the following QML code + PNG, which is quite wasteful:
Item { id: artboard width: 300 height: 200 Image { id: artboardAsset x: 0 y: 0 source: "assets/artboard.png" // A solid white rectangle, 300x200 } // ... }
It should be exported to this instead:
Rectangle { id: artboard width: 300 height: 200 color: "#FFFFFF" // ... }