npm i --save nativescript-material-ripple
- 版本: 3.3.2
- GitHub:
- NPM: https://npmjs.net.cn/package/nativescript-material-ripple
- 下载
- 昨日: 1
- 上周: 5
- 上月: 130
安装
如果使用 @nativescript
tns plugin add nativescript-material-ripple
如果使用 tns-core-modules
tns plugin add [email protected]
添加插件后请务必运行新的构建,以避免任何问题。
材料设计规范
使用
纯 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 可选
用于设置涟漪颜色的属性。