Nav-bar button icon not appearing

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>

image
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?
image
thanks.

1 Like

I figured it out. The problem was the ‘ion-ios-search’ was nonexistent. It needs to be ‘ion-android-search’.

1 Like