Uploaded image for project: 'Qt Design Studio'
  1. Qt Design Studio
  2. QDS-10771

[Sketch Bridge] Export unmerged Artboards as Rectangles

    XMLWordPrintable

Details

    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"
      
          // ...
      }
      

      Attachments

        No reviews matched the request. Check your Options in the drop-down menu of this sections header.

        Activity

          People

            vikas Vikas Pachdha
            skoh-qt Sze Howe Koh
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved:

              Gerrit Reviews

                There are no open Gerrit changes