I’m building an app with several screens. Responsiveness is a main concern in this app and due to slow reloading I’m doing the classical way of having all screens in index.html in different sections which are then shown/hidden with a smooth-looking animation when changing screen.
This means that I have several and tags on the same index.html. In some ion-panes I have a footer, on others I don’t. However, it seems like if just one of the panes has a footer the ion-content footer auto-detector thinks there’s a footer in all panes and leaves footer space even if there is no footer.
Is there a proper way to solve this? I can add a style with “bottom: 0” as a work-around of course.