NativeScript supports using custom fonts that are packaged in the app's app/fonts
directory. One refers to them with CSS font-family
rules. I need to be able to use a custom font that is loaded from a web site at run time.
In native Android, one can load a font more or less directly from a web address (just open an input stream to the URL and feed it to the Typeface
constructor). In iOS, it's also possible (as per this thread). Is there any support for doing something similar in NS (use a custom font loaded from the web), other than dropping down into native code?