Is it possible to add components in a Gridlayout verticaly ? I mean the next one above the previous one ?
Thank you
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
No, there is no layout that allows you to stack vertically from the bottom up, at least that I’m aware of. If you want vertical stacking you can either use a
GridLayoutwith a single column or aBoxLayoutwith a vertical axis. By nesting panels and combining layouts you should easily get what you need, e.g. panels with a vertical layout all laid out in a horizontal container.