Combine views for label printing

I am developing a printer label designer. Currently I am stuck on how to combine views for different images, text and barcode etc (after the user select what they want to design and print). I tried using different stacks but it does not work as expected.

1 Like

What framework are you using for this?

To combine views for different images, text, and barcode in a printer label designer, you can use a layout manager that supports the placement of multiple components on a single view. One such layout manager is the GridBagLayout in Java Swing, which allows you to specify the position and size of each component in a grid-like structure. You can also use CSS Grid or Flexbox in HTML/CSS to create a similar layout.

I am using swiftUI. I will post the question again and explain it in more detail with some codes.

This topic was automatically closed after 166 days. New replies are no longer allowed.