npm i --save nativescript-material-dialogs
- Version: 3.3.2
- GitHub:
- NPM: https://www.npmjs.com/package/nativescript-material-dialogs
- Downloads:
- Last Day: 0
- Last Week: 0
- Last Month: 0
NativeScript Material Dialogs
Use the Material Design Dialogs in your {N} app
Installation
If using @nativescript
:
tns plugin add nativescript-material-dialogs
If using tns-core-modules
tns plugin add [email protected]
Changelog
Usage
Uses the same API as Nativescript Dialogs
Adds one option for alert
:
view
: can be a Nativescript View or a path to to XML component. The custom view will be added to the dialog. Possibilities become endless
TS
import { login, alert, prompt } from "nativescript-material-dialogs";
alert("Your message").then(()=> {
console.log("Dialog closed!");
});