Right drawer similar to Left drawer
-
This post is deleted! -
-
This post is deleted! -
@marin-cec You should try and reproduce this is a codepen, because I think you’re doing some non-standard things with max-width and auto margins.
That being said, you may want to use a containerized layout. Or, you might not even need a qlayout here at all, but it’s not exactly clear if you want to be able to show / hide the drawers (maybe that’s what the x buttons are in the toolbar) -
no it’s relevant. Because you can play and see the difference in behavior of the layout if you change the “Layout view” setup.
Your Layout view setup is:
view="hHh lpR fFF"
With this setup the left and right drawer have a different behavior because you have
lpR
with a capitalR
and a non-capitall
. Insteadlpr
orLpR
will result in the same behavior.same for:
fFF
gives different behavior left and right.
fFf
gives the same behavior left and right.The
hHh
part of your setup is fine and will result in the same behaviour of the left and right drawer.For more info:
https://quasar.dev/layout/layout#Understanding-the-“view”-prop -
@dobbel You are partially right, about different behavior of Drawers, according to Uppercase or Lowercase letters. I missed up, that the letter uppercase mean and make it Fixed, and now I changed to view=“hhh lpr fff” . Thank you man!
-
@marin-cec Great to hear! So all is fixed?
-
This post is deleted!