1.0.1 • Published 6 years ago

nativescript-nbmaterial-buttons v1.0.1

Weekly downloads
-
License
Apache-2.0
Repository
-
Last release
6 years ago

Nativescript implementation of the Material Float buttons

The module implement Float buttons on both iOS and Android.

<Page xmlns="http://schemas.nativescript.org/tns.xsd" 
xmlns:btn="nativescript-nbmaterial-buttons">
 		<btn:FloatButton row="0" id="floatbtn" afterTap="navigateForm" animNavigation="true" text="edit" />
</Page>

}

animNavigation make the button growing when the page load (or disappear when the page is unloading)

The button has this interface:

export declare abstract class FloatButton extends View {
    static aftertapEvent: string;
    animNavigation: boolean;
    rippleColor: Color;
}

See all modules here