Hello !
I have recently started using Ionicons
, they work perfectly fine in the browser, but when it comes to Android/iOS devices something is going wrong.
My html
file:
<ion-footer-bar align-title="left" class="bar-balanced">
<div class="buttons" ng-click="doSomething()">
<button class="button icon ion-information-circled"></button>
</div>
<h1 class="title">Title!</h1>
<div class="buttons" ng-click="doSomething()">
<button class="button icon ion-ios-information-outline"></button>
</div>
</ion-footer-bar>
So:
Browser - icons are shown.
iOS - icons are not shown at all.
Android: - some weird symbols are shown instead of the icons
Since I started using SASS
I have restructured my project and I moved some files around (e.g renamed the lib
folder to scripts
. I guess I am handling that well in my scss
file:
$ionicons-font-path: "/scripts/ionic/fonts/" !default;
@import "www/scripts/ionic/scss/ionic";
So any ideas, what could be the reason for Ionicons showing in the browser but not on any of the mobile devices ?