0.1.0 • Published 2 years ago

@morphood/capacitor-lottie-splash-screen v0.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

@morphood/capacitor-lottie-splash-screen

Lottie splash screen plugin for capacitor

Install

npm install @morphood/capacitor-lottie-splash-screen
npx cap sync

Add to capacitor.config.ts or capcitor.config.json

CapacitorLottieSplashScreen: {
  Enabled: true,
  LottieAnimationLocation: "public/[web/path/to.json]"
}

if you were previously using Capacitor Splash Screen set the following in you capacitor config

SplashScreen: {
  launchAutoHide: true,
  launchShowDuration: 0,
},

API

echo(...)

echo(options: { value: string; }) => Promise<{ value: string; }>
ParamType
options{ value: string; }

Returns: Promise<{ value: string; }>


appLoaded()

appLoaded() => Promise<any>

Indicate to the plugin that the app has loaded.

Run as early as possible when your app is loaded. This will ensure that on animation end the layer of the splash screen is removed and touch interactions will go to the app.

Returns: Promise<any>


isAnimating()

isAnimating() => Promise<{ isAnimating: boolean; }>

Returns: Promise<{ isAnimating: boolean; }>


addListener('onAnimationEnd', ...)

addListener(eventName: 'onAnimationEnd', listenerFunc: () => void) => Promise<PluginListenerHandle> & PluginListenerHandle
ParamType
eventName'onAnimationEnd'
listenerFunc() => void

Returns: Promise<PluginListenerHandle> & PluginListenerHandle


Interfaces

PluginListenerHandle

PropType
remove() => Promise<void>
0.1.0

2 years ago

0.0.6

3 years ago

0.0.5

3 years ago

0.0.3

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago