Take scroll bar on ionic 3

0

I'm having trouble getting the scroll bar on ionic 3 appearing on all versions (ios, android, windows phone)

What should I do?

    
asked by anonymous 06.06.2017 / 20:38

1 answer

1

Try to draw with css:

* {
   overflow-y: hidden !important;
   overflow-x: hidden !important;
}

Hug.

    
06.06.2017 / 20:41