npm i --save nativescript-material-snackbar
- 版本:3.3.2
- GitHub:
- NPM: https://npmjs.net.cn/package/nativescript-material-snackbar
- 下载量
- 昨天: 0
- 上周: 5
- 上个月: 142
Nativescript Material SnackBar
在您的 {N} 应用中使用 Material Design 抽屉
Material Design 规范
安装
如果使用 @nativescript
tns plugin add nativescript-material-snackbar
如果使用 tns-core-modules
tns plugin add [email protected]
在添加插件后,请务必运行新的构建以避免任何问题。
用法
TS
import { SnackBar } from 'nativescript-material-snackbar';
const snackbar = new SnackBar();
export function showSimpleSnackbar() {
snackbar.simple(`I'm a simple snackbar`).then(result => console.log('Simple Snackbar:', result));
}
export function showActionSnackbar() {
snackbar
.action({
message: `I'm a snackbar with an action`,
actionText: 'Dismiss',
hideDelay: 2000
})
.then(result => console.log('Action Snackbar:', result));
}
export function showColorfulSnackbar() {
snackbar
.action({
message: `I'm a colorful snackbar`,
textColor: 'blue',
actionTextColor: 'yellow',
backgroundColor: 'green',
actionText: 'Dismiss',
hideDelay: 2000
})
.then(result => console.log('Action Snackbar:', result));
}