nativeScript-nbmaterial-buttons
适用于 iOS 和 Android 的 Material 浮动按钮的 nativeScript 实现
npm i --save nativescript-nbmaterial-buttons

Material 浮动按钮的 Nativescript 实现

该模块在 iOS 和 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 在页面加载时使按钮变大(或在页面卸载时消失)

按钮具有以下接口

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

查看所有模块