npm i --save nativescript-material-dialogs
- 版本:3.3.2
- GitHub:
- NPM: https://npmjs.net.cn/package/nativescript-material-dialogs
- 下载量
- 昨天:4
- 上周:13
- 上个月:142
NativeScript Material Dialogs
在您的 {N} 应用中使用 Material Design 对话框
安装
如果使用 @nativescript
tns plugin add nativescript-material-dialogs
如果使用 tns-core-modules
tns plugin add [email protected]
变更日志
使用方法
使用与 Nativescript Dialogs 相同的 API
为 alert
添加一个选项
view
: 可以是一个 Nativescript View 或 XML 组件的路径。自定义视图将被添加到对话框中。可能性变得无限
TS
import { login, alert, prompt } from "nativescript-material-dialogs";
alert("Your message").then(()=> {
console.log("Dialog closed!");
});