In my original use of Ionic 1, I placed the footer after the <ion-content>
and before . However, in the new Ionic 2, I can't seem to find any reference to <ion-view>
.
My specific need is to have two buttons at the bottom of the screen following the <ion-content>
, essentially creating a footer. How can I adjust the below Ionic 1 code to implement footer buttons in Ionic 2?
<div class="bar bar-footer bar-clear footer-button btnpadding" style="margin-bottom: 6px;padding-right: 6px; height: 8%;padding-top: 3px;">
<div class="button-bar font-color">
<button class="button button-outline" style="font-size: 14px;font-weight: bold;border: none;color: #696969;background-color: #fff" ng-click="LoginButtontap()">LOG IN</button>
<button class="button button-dark button-outline" style="margin-bottom: 5px;
margin-right: 5px;font-size: 14px;font-weight: bold;border: none;color: #fff">SIGN UP</button>
</div>
</div>