nativescript-marshmallow-loader
NativeScript plugin for the Android Marshmallow loading animation.
npm i --save nativescript-marshmallow-loader
- Version: 1.0.0
- GitHub: https://github.com/bradmartin/nativescript-marshmallow-loader
- NPM: https://www.npmjs.com/package/nativescript-marshmallow-loader
- Downloads:
- Last Day: 0
- Last Week: 0
- Last Month: 0
NativeScript Marshmallow Loader
NativeScript plugin for the Android Marshmallow loading animation.
Android Only
Sample Usage
Sample |
---|
Native Library:
Android |
---|
Cleveroad/CRAndroidMBootAnimationView |
Installation
From your command prompt/terminal go to your app's root folder and execute:
tns plugin add nativescript-marshmallow-loader
Usage
<Page
xmlns="http://schemas.nativescript.org/tns.xsd"
xmlns:Marshmallow="nativescript-marshmallow-loader" loaded="pageLoaded">
<ActionBar title="Marshmallow Loader" />
<StackLayout>
<Marshmallow:MarshmallowLoader id="marshmallow" height="140" />
<StackLayout orientation="horizontal">
<Button text="Pause" tap="{{ pauseIt }}" />
<Button text="Play" tap="{{ playIt }}" />
<Button text="Stop" tap="{{ stopIt }}" />
</StackLayout>
</StackLayout>
</Page>
API
- startAnimation() - start playing the video
- pauseAnimation() - pause the video
- stopAnimation() - stop the animation and reset to beginning when resumed.