JSPM

@nativescript-community/ui-material-progress

7.2.71
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 93
  • Score
    100M100P100Q80789F
  • License Apache-2.0

Progress view is a linear progress indicator that implements Material Design animation and layout.

Package Exports

    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-community/ui-material-progress) 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 Linear progress indicator

    Material Design's Linear progress indicator component for NativeScript.

    npm npm

    Contents

    1. Installation
    2. Changelog
    3. FAQ
    4. Usage
    5. API

    Installation

    For NativeScript 7.0+

    • tns plugin add @nativescript-community/ui-material-progress

    For NativeScript 6.x

    • tns plugin add nativescript-material-progress

    If using tns-core-modules

    • tns plugin add nativescript-material-progress@2.5.4

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

    Changelog

    FAQ

    Usage

    Plain NativeScript

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

    XML

    <Page xmlns:mdp="@nativescript-community/ui-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-community/ui-material-progress/angular";
    
    @NgModule({
        imports: [
            NativeScriptMaterialProgressModule,
            ...
        ],
        ...
    })
    <MDProgress v-model="value" maxValue="100"></MDProgress>

    NativeScript + Vue

    import ProgressPlugin from '@nativescript-community/ui-material-progress/vue';
    
    Vue.use(ProgressPlugin);
    <MDProgress value="50" maxValue="100"></MDProgress>

    API

    Attributes

    Inherite from NativeScript Progress so it already has all the same 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.