Search code examples
sapui5

Line break in XMLView UI5


How can I set a line break between two controls?

enter image description here I want to display one by one in vertical manner.


Solution

  • You can use a flex box control: either <VBox> or <HBox>.

    <VBox xmlns="sap.m" wrap="Wrap" renderType="Bare">
      <!-- ... -->
    </VBox>