Skip to content
No description or website provided.
TypeScript CSS
Branch: master
Clone or download
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
demo
platforms/android
screens
.gitignore
.npmignore
LICENSE
README.md
index.d.ts
marshmallow-loader.android.ts
marshmallow-loader.d.ts
package.json
tsconfig.json

README.md

npm npm

NativeScript Marshmallow Loader

NativeScript plugin for the Android Marshmallow loading animation.

Android Only

Sample Usage

Sample
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.
You can’t perform that action at this time.