nativescript-material-dialogs
by farfromrefuge | v3.3.2
Material Dialogs component
npm i --save nativescript-material-dialogs

npm npm GitHub forks GitHub stars

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

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!");
});