nativescript-material-progress
by farfromrefuge | v3.3.2
Material progress component
npm i --save nativescript-material-progress

npm npm GitHub forks GitHub stars

Installation

If using @nativescript :

  • tns plugin add nativescript-material-progress

If using tns-core-modules

Be sure to run a new build after adding plugins to avoid any issues.


Material Design Spec

Usage

Plain NativeScript

IMPORTANT: Make sure you include xmlns:mdp="nativescript-material-progress" on the Page element

XML

<Page xmlns:mdp="nativescript-material-progress">
<StackLayout horizontalAlignment="center">
<mdp:Progress value="50" maxValue="100"/>
</StackLayout>
</Page>

CSS

mdprogress {
ripple-color: blue;
elevation: 4;
}

NativeScript + Angular

import { NativeScriptMaterialProgressModule } from "nativescript-material-progress/angular";

@NgModule({
imports: [
NativeScriptMaterialProgressModule,
...
],
...
})
<MDProgress v-model="value" maxValue="100"></MDProgress>

NativeScript + Vue

import ProgressPlugin from 'nativescript-material-progress/vue';

Vue.use(ProgressPlugin);
<MDProgress value="50" maxValue="100"></MDProgress>

Attributes

Inherite from Nativescript Progress so it already has all the same attributes

Attributes

  • elevation optional

An attribute to set the elevation of the progress. This will increase the 'drop-shadow' of the progress.

  • rippleColor optional

An attribute to set the ripple color of the progress.