You will have to manually install the fonts you want to use.
From the command prompt go to your app's root folder and execute:
tns plugin add nativescript-vector-iconsIf you want a quickstart, clone the repo, cd src, and npm run demo.ios or npm run demo.android.
Returns the image url based on the given parameters.
| Parameters | Type | Description |
|---|---|---|
font |
Font |
Instance of Font you want to use, created with font family name and size. |
glyph |
String |
A string that represents an icon. |
color |
Color |
Instance of Color you want to use, created with known color names / hex code / raba values. |
var Color = require('color').Color;
var Font = require('ui/styling/font').Font;
var vectorIcons = require('nativescript-vector-icons');
vectorIcons.getImage(
Font.default.withFontFamily('Material Design Icons, MaterialDesignIcons').withFontSize(48),
String.fromCharCode(63615),
new Color('blue')
);#5887 - Android uses deprecated method to create Drawable from Bitmap