Learn more  » Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

vipera-npm-registry / de-splashscreen-plugin   js

Repository URL to install this package:

Version: 0.0.4 

/ src / android / DESplashScreen.java

package com.vipera.splashscreen;

/**
 * Created by enrico on 23/02/17.
 */

public interface DESplashScreen {
    /**
     * Show your splashScreen
     */
    void show();
    /**
     * Hide your splashScreen
     */
    void hide();

    /**
     * destroy your splashScreen
     */
    void destroy();
}