Scrollable App
-
Hello everyone,
I’m building a Movies and Series Manager App with vue, quasar and cordova.
I can not scroll the application, it looks like cutted,Can anyone help me to understand what des it happening?
Thanks!! -
Hi, can you supply more details? A repo to take a look at would be great.
-
Yes! just uploading it
-
I have uploaded it on this temporaly storadge service:
https://ufile.io/o8uhzits just the “src folder” i hope it helps
-
Could anyone please help me, at least to understand the problem?
-
@josulite once I get to work I will take a look
-
You are missplacing the
"layout-view"
classFrom the docs:
The place where the App pages’ content goes on the Layout is the one having layout-view CSS class. If you want your page content to have margins and padding calculated automatically (responsive) use CSS class layout-padding:
In App.vue replace:
<q-layout id="q-app" class="layout-view scroll"> <router-view></router-view> </q-layout>
With:
<q-layout id="q-app"> <router-view class="layout-view"></router-view> </q-layout>
Try that and get back to us
-
Hello Benoit!
That worked, just did that
Thank you so much