nativeScript-material-snackbar
Material 抽屉组件
npm i --save nativescript-material-snackbar

npm npm GitHub forks GitHub stars

Nativescript Material SnackBar

在您的 {N} 应用中使用 Material Design 抽屉

Material Design 规范

安装

如果使用 @nativescript

  • tns plugin add nativescript-material-snackbar

如果使用 tns-core-modules

在添加插件后,请务必运行新的构建以避免任何问题。

用法

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