@nativescript-community/ui-material-speeddial
                        
                        
                            When pressed, the Material Design component can display three to six related actions in the form of a speed dial.
                        
                        
                        npm i --save @nativescript-community/ui-material-speeddial
                    
                    - Version: 7.2.67
 - GitHub: https://github.com/nativescript-community/ui-material-components/tree/master
 - NPM: https://www.npmjs.com/package/%40nativescript-community%2Fui-material-speeddial
 - Downloads:
 - Last Day: 1
 - Last Week: 23
 - Last Month: 709
 
NativeScript Material Speed dial
Material Design's Speed dial component for NativeScript.
Contents
Installation
ns plugin add @nativescript-community/ui-material-speeddial
Be sure to run a new build after adding plugins to avoid any issues.
Changelog
FAQ
Usage
NativeScript + Vue
import Vue from 'nativescript-vue';
import speeddialPlugin from '@nativescript-community/ui-material-speeddial/vue';
Vue.use(speeddialPlugin);
<MDSpeedDial buttonFontSize="26" text="mdi-one-up"  buttonClass="mdi" buttonBackgroundColor="yellow" @tap="onTap">
    <MDSpeedDialItem icon="res://ic_action_add" title="test1" backgroundColor="red"  @tap="onTap"/>
    <MDSpeedDialItem text="mdi-card-account-mail" title="test2" buttonClass="mdi" backgroundColor="green"  @tap="onTap"/>
    <MDSpeedDialItem backgroundImage="~/images/iu.jpg"  backgroundColor="blue"  @tap="onTap"/>
    <MDSpeedDialItem icon="res://ic_action_add" title="test4" backgroundColor="orange" @tap="onTap"/>
</MDSpeedDial>