Is there any way to set button to the bottom of the screen, without using ion-footer? I need it to be at the bottom of the ion-content.
Maybe with css, in your scss
ion-content {
#your-element {
position: absolute;
bottom: 0;
}
}
3 Likes