
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
@nativescript-community/fonticon
Advanced tools
Use custom font icon collections seamlessly with NativeScript.
You can use icon fonts with NativeScript by combining a class with a unicode reference in the view:
.fa {
font-family: FontAwesome;
}
<Label class="fa" text="\uf293"></Label>
This works but keeping up with unicodes is not fun.
With this plugin, you can instead reference the fonticon by the specific classname:
<Label class="fa" text="{{'fa-bluetooth' | fonticon}}"></Label>
npm install @nativescript-community/fonticon --save
FontAwesome will be used in the following examples but you can use any custom font icon collection.
.ttf file in app/fonts, for example:app/fonts/fontawesome-webfont.ttf
app.css global 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).
app somewhere, for example:app/font-awesome.css
Then modify the css file to isolate just the icon fonts needed. Watch this video to better understand.
import * as application from '@nativescript/core/application';
import {FontIcon, fonticon} from '@nativescript-community/fonticon';
FontIcon.debug = true; <-- Optional. Will output the css mapping to console.
FontIcon.paths = {
'fa': 'font-awesome.css',
'ion': 'ionicons.css'
};
FontIcon.loadCss();
application.setResources( { fonticon } );
application.run({ moduleName: 'main-page' });
<Label class="fa" text="{{'fa-bluetooth' | fonticon}}"></Label>
| Demo FontAwesome (iOS) | Demo Ionicons (iOS) |
|---|---|
| Demo FontAwesome (Android) | Demo Ionicons (Android) |
|---|---|
In this case, you have to copy and import each ttf file and associate it with the proper class:
.fas {
font-family: Font Awesome 5 Free, fa-solid-800;
}
.far {
font-family: Font Awesome 5 Free, fa-regular-400;
}
but still you will import the css only once with the fa prefix:
FontIcon.paths = {
'fa': 'font-awesome.css'
};
If using Angular, use this instead:
Idea came from Bradley Gore's post here.
FAQs
Use custom font icon collections seamlessly with NativeScript.
The npm package @nativescript-community/fonticon receives a total of 18 weekly downloads. As such, @nativescript-community/fonticon popularity was classified as not popular.
We found that @nativescript-community/fonticon demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 9 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.