nativescript-material-ripple
材料涟漪组件
npm i --save nativescript-material-ripple

npm npm GitHub forks GitHub stars

安装

如果使用 @nativescript

  • tns plugin add nativescript-material-ripple

如果使用 tns-core-modules

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


材料设计规范

使用

纯 NativeScript

重要: 请确保在 Page 元素上包含 xmlns:mdr="nativescript-material-ripple"

XML

<Page xmlns:mdr="nativescript-material-ripple">
<StackLayout horizontalAlignment="center">
<mdr:Ripple rippleColor="green" width="100" height="100" />
</StackLayout>
</Page>

CSS

mdcripple {
ripple-color: blue;
}

NativeScript + Angular

import { NativeScriptMaterialRippleModule } from "nativescript-material-ripple/angular";

@NgModule({
imports: [
NativeScriptMaterialRippleModule,
...
],
...
})
<MDRipple rippleColor="green" width="100" height="100"></MDRipple>

NativeScript + Vue

import Vue from 'nativescript-vue';
import RipplePlugin from 'nativescript-material-ripple/vue';

Vue.use(RipplePlugin);
<MDRipple rippleColor="green" width="100" height="100"/>

属性

继承自 Nativescript StackLayout

属性

  • rippleColor 可选

用于设置涟漪颜色的属性。