I am implementing ionic-filter-bar into my app. It is mostly working. However, I can’t figure out why the search icon is not appearing in my app. As a guide, I have been using this: http://plnkr.co/edit/oB4J11YcN9UrlYuCzZ1f?p=preview
This is my home.html:
<ion-view title="Welcome">
<ion-nav-buttons side="secondary">
<button class="button button-icon icon ion-ios-search" ng-click="showFilterBar()"></button>
</ion-nav-buttons>
... some stuff
</ion-view>
The button IS actually added to the nav bar (and it works). However, no icon is present. Perhaps, I’m doing something elsewhere that is prohibiting the icon?
thanks.