I have an ion-content
window that fixes it’s height depending on the screen size, inside of it is a div
whose existence depends on an ng-if
, once the condition is met, the div appears inside the ion-content
window. I can’t get the div
to appear at the bottom of the ion-content
though. I can’t seem to get the height of ion-content
window because I could use that set a temp wrapper div
with relative
position and then use absolute
position and bottom: 0
on the inner div. I also can’t seem to use $ionicScrollDelegate
on a div (needs to be used on ion-scroll
or other scrolling elements).
Any way to do this?