nativescript-nbmaterial-buttons
A nativescript implementatoin of material float button for iOS and Android
npm i --save nativescript-nbmaterial-buttons
- Version: 1.0.1
- GitHub:
- NPM: https://www.npmjs.com/package/nativescript-nbmaterial-buttons
- Downloads:
- Last Day: 0
- Last Week: 0
- Last Month: 0
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;
}