Skip to main content
sebastiand8415
February 22, 2024
Question

Column Layout height and position

  • February 22, 2024
  • 2 replies
  • 0 views

I'm trying to achieve this kind of display on my interface, but I find it to be difficult.

Is it possible to achieve such effect?

2 replies

harshitb6843
February 22, 2024

{
  a!columnsLayout(
    columns: {
      a!columnLayout(
        contents: {
          a!columnsLayout(
            columns: {
              a!columnLayout(
                contents: {
                  a!cardLayout(
                    contents: {},
                    height: "SHORT_PLUS",
                    style: "TRANSPARENT",
                    marginBelow: "STANDARD"
                  )
                }
              ),
              a!columnLayout(
                contents: {
                  a!cardLayout(
                    contents: {},
                    height: "SHORT_PLUS",
                    style: "TRANSPARENT",
                    marginBelow: "STANDARD"
                  )
                }
              )
            }
          ),
          a!columnsLayout(
            columns: {
              a!columnLayout(
                contents: {
                  a!cardLayout(
                    contents: {},
                    height: "SHORT_PLUS",
                    style: "TRANSPARENT",
                    marginBelow: "STANDARD"
                  )
                }
              ),
              a!columnLayout(
                contents: {
                  a!cardLayout(
                    contents: {},
                    height: "SHORT_PLUS",
                    style: "TRANSPARENT",
                    marginBelow: "STANDARD"
                  )
                }
              )
            }
          )
        }
      ),
      a!columnLayout(
        contents: {
          a!cardLayout(
            contents: {},
            height: "TALL",
            style: "TRANSPARENT",
            marginBelow: "STANDARD"
          )
        },
        width: "MEDIUM"
      )
    }
  )
}

stefanhelzle0001
Brainy
February 22, 2024

What exactly do you find difficult?