npm i --save nativescript-material-progress
- Version: 3.3.2
- GitHub:
- NPM: https://www.npmjs.com/package/nativescript-material-progress
- Downloads:
- Last Day: 0
- Last Week: 0
- Last Month: 0
Installation
If using @nativescript
:
tns plugin add nativescript-material-progress
If using tns-core-modules
tns plugin add [email protected]
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.