JSPM

  • Created
  • Published
  • Downloads 229
  • Score
    100M100P100Q82317F
  • License Apache-2.0

Material Core component

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

![NPM version][npm-image]

Installation

From the command prompt go to your app's root folder and execute:

tns plugin add nativescript-material-activityindicator

Usage

Demo app

If you want a quickstart, clone the repo, then:

  • cd demo.
  • tns run ios or tns 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();