nativescript-material-dialogs
v3.3.2
Published
Material Dialogs component
Downloads
28
Maintainers
Readme
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!");
});