Quantcast
Channel: Ionic Forum - Latest posts
Viewing all articles
Browse latest Browse all 228595

Ionic Slider Full Screen

$
0
0

What I have found is you can wrap the ion-slide-box in a div, then set the contents of the div to be full height with a bit of sass:

.wrapper {
    height:100%;
    width:100%;
    * {
        height:100%;
        width:100%;
    }
}

or, of course, css:

.wrapper * {
    height:100%;
    width:100%;
}

Viewing all articles
Browse latest Browse all 228595

Trending Articles