Does anyone know how to make a responsive vertical and horizontal layout login page? What are the methods or components I should consider? Thank you.
“Responsive” is an umbrella term and doesn’t really give us any clue of how you would want the page to scale.
Perhaps you could try to describe it, or even better, draw it?
AFAIK, you cannot achieve Responsiveness with just VL and HL
try FormLayout
it is better to learn CSS to achieve this
You can check the Bakery App CSS code to understand how responsiveness is achieved
FormLayout is a good option for making the form itself responsive, yes.
Flow also has a FlexLayout class with an API almost identical to HL+VL, but that supports wrapping.
But, in the end, it all depends on what kind of responsive layout you’re looking to build.
Also, technically, you can also make HL+VL wrap with css, if that’s what you want to do – just set flex-wrap: wrap on it.