npm i --save nativescript-material-progress
- 版本:3.3.2
- GitHub:
- NPM: https://npmjs.net.cn/package/nativescript-material-progress
- 下载
- 昨天:0
- 上周:9
- 上个月:130
安装
如果使用 @nativescript
tns plugin add nativescript-material-progress
如果使用 tns-core-modules
tns plugin add [email protected]
确保在添加插件后运行新的构建,以避免任何问题。
Material Design 规范
用法
纯 NativeScript
重要:请确保在 Page 元素上包含 xmlns:mdp="nativescript-material-progress"
XML
<Page xmlns:mdp="nativescript-material-progress">
<StackLayout horizontalAlignment="center">
<mdp:Progress value="50" maxValue="100"/>
</StackLayout>
</Page>
CSS
mdprogress {
ripple-color: blue;
elevation: 4;
}
NativeScript + Angular
import { NativeScriptMaterialProgressModule } from "nativescript-material-progress/angular";
@NgModule({
imports: [
NativeScriptMaterialProgressModule,
...
],
...
})
<MDProgress v-model="value" maxValue="100"></MDProgress>
NativeScript + Vue
import ProgressPlugin from 'nativescript-material-progress/vue';
Vue.use(ProgressPlugin);
<MDProgress value="50" maxValue="100"></MDProgress>
属性
从 Nativescript Progress 继承,因此它已经有了所有相同的属性
属性
- elevation 可选
用于设置进度条高度的属性。这将增加进度的“阴影”。
- rippleColor 可选
用于设置进度条涟漪颜色的属性。