Ionic-Material
Ionic-Material copied to clipboard
Issue: button disappear in "ion-footer-bar"
Issue Repro steps:
- open activity.html of Thronester Demo
- add the following
<ion-footer-bar>
between</ion-content>
and</ion-view>
<ion-footer-bar class="bar-light">
<button class="button button-positive button-clear no-animation" >
Click Me
</button>
</ion-footer-bar>
- run the demo project and go to Activity, you'll find that the button in ion-footer-bar disappears.
- but if you put the same button within
<ion-content></ion-content>
of the activity.html, it shows up normally.<button class="button button-positive button-clear no-animation">
Click Me
</button>
Why the same button disappear in <ion-footer-bar>
?
Thanks.