Ion icons are not displayed in Android simulator

Running Meteor / Angular / Ionic tutorial, I had the following problem: enter image description here

Ion icons are not displayed on the screen of the Nexus 6 Marshmallow simulator. Buttons are declared as follows:

        <button class="button button-clear button-icon button-positive
 icon ion-ios-camera-outline"></button>

I tried to add a class of ion-android camera, but nothing has changed.

+4
source share
1 answer

enter image description here Thanks to Dave, the solution is as follows. Reinstall packages:

meteor remove fourseven:scss
meteor remove meteoric:ionic-sass
meteor remove meteoric:ionicons-sass
meteor add fourseven:scss@2.0.0
meteor add meteoric:ionic-sass
meteor add meteoric:ionicons-sass

Let Meteor finish the construction. Add to the first line in your file *.scss:

@import '***<path to your prj root like ../../>***.meteor/local/build/programs/server/assets/packages/meteoric_ionicons-sass/ionicons';
+1
source

All Articles