No More Posting New Topics!

If you have a question or an issue, please start a thread in our Github Discussions Forum.
This forum is closed for new threads/ topics.

Navigation

    Quasar Framework

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search

    Scrollbar doesnt display on android

    Help
    2
    3
    114
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • A
      acros last edited by

      My scrollbars doesnt display on android but works fine running in the browser. Are there somewhere in the configuration I need to enable scrollbars? Or something else?

      My code is simply something like this. As you can see. Works with scrollbar but when I run it as android application through android studio emulator the scrollbar wont display.

      codepen:
      https://codepen.io/haangglide/pen/ExgjOXX

      <div id="app">
       <div class="session-container">
          <div class="session-content-container">
            <div
                 v-for="item in comments"
                 :key="item.message"
                 class="session-content"
                 >
              {{ item.message }}
            </div>
            <div class="prevsession-arrow"></div>
          </div>
        </div>
      </div>
      
      var app = new Vue({
        el: '#app',
        data: {
            comments: [
            { message: "This is my message number one!" },
            { message: "This is my message number two!" },
            { message: "This is my message number three!" },
            { message: "This is my message number four!" }
          ]
        },
      });
      
      dobbel 1 Reply Last reply Reply Quote 0
      • dobbel
        dobbel @acros last edited by

        @acros

        this is expected behavior. All scrollbars are hidden on android.

        1 Reply Last reply Reply Quote 0
        • A
          acros last edited by

          aha, interesting. I didnt knew that.

          1 Reply Last reply Reply Quote 0
          • First post
            Last post