Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 650 Bytes

floating-action-button.md

File metadata and controls

22 lines (16 loc) · 650 Bytes

Floating Action Button

Creating a floating action button

{% hint style="info" %} See Event Handler Endpoints for more information about how event handlers work. {% endhint %}

A floating action button will appear in the bottom right and can expand to multiple actions on hover.

New-UDFab -ButtonColor 'orange' -Icon bathtub -Size Large -onClick {
    Show-UDToast -Message "Take a bath!"
} -Content {
    New-UDFabButton -ButtonColor 'blue' -Icon fax -onClick {
        Show-UDToast -Message "Send a fax!"
    }
}