Package Exports
- nativescript-material-core/android/utils
- nativescript-material-core/cssproperties
- nativescript-material-core/material.android
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-material-core) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Nativescript Material ActivityIndicator
Installation
From the command prompt go to your app's root folder and execute:
tns plugin add nativescript-material-activityindicatorUsage
Demo app
If you want a quickstart, clone the repo, then:
cd demo.tns run iosortns run android.
Start-up wiring
For some features (coordinatorLayout, bottomsheets ...), we need to do some wiring when your app starts, so open app.js and add this before creating any View/App/Frame:
JavaScript
var material = require("nativescript-material-components");
material.install();TypeScript
import { install } from "nativescript-material-components";
install();