Package Exports
- nativescript-fonticon
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (nativescript-fonticon) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
A simpler way to use font icons with NativeScript
The Problem
You can use icon fonts with NativeScript by combining a class with a unicode reference in the view:
- css
.fa {
font-family: FontAwesome;
}- view
<Label class="fa" text="\uf293"></Label>This works but keeping up with unicodes is not fun.
The Solution
With this plugin, you can instead reference the fonticon by the specific classname:
<Label class="fa" text="{{'fa-bluetooth' | fonticon}}"></Label> Install
npm install nativescript-fonticon --saveUsage
FontAwesome will be used in the following examples but you can use any custom font icon collection.
- Place font icon
.ttffile inapp/fonts, for example:
app/fonts/fontawesome-webfont.ttf- Create base class in
app.cssglobal file, for example:
.fa {
font-family: FontAwesome, fontawesome-webfont;
}NOTE: Android uses the name of the file for the font-family (In this case, fontawesome-webfont.ttf. iOS uses the actual name of the font; for example, as found here. You could rename the font filename to FontAwesome.ttf to use just: font-family: FontAwesome. You can learn more here.(http://fluentreports.com/blog/?p=176).
- Copy css to
appsomewhere, for example:
app/font-awesome.cssThen modify the css file to isolate just the icon fonts needed. Watch this video to better understand.
- Configure your fonts and setup the converter:
import * as application from 'application';
import {TNSFontIcon, fonticon} from 'nativescript-fonticon';
TNSFontIcon.debug = true; <-- Optional. Will output the css mapping to console.
TNSFontIcon.paths = {
'fa': 'font-awesome.css',
'ion': 'ionicons.css'
};
TNSFontIcon.loadCss();
application.resources['fonticon'] = fonticon;
application.start({ moduleName: 'main-page' });- Use the Converter, for example:
<Label class="fa" text="{{'fa-bluetooth' | fonticon}}"></Label> | Demo FontAwesome (iOS) | Demo Ionicons (iOS) |
|---|---|
| Demo FontAwesome (Android) | Demo Ionicons (Android) |
|---|---|
How about NativeScript with Angular?
If using Angular, use this instead:
Why the TNS prefixed name?
TNS stands for Telerik NativeScript
iOS uses classes prefixed with NS (stemming from the NeXTSTEP days of old):
https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSString_Class/
To avoid confusion with iOS native classes, TNS is used instead.
Credits
Idea came from Bradley Gore's post here.