@nativescript-community/ui-material-progress
进度视图是一个线性进度指示器,实现了材料设计动画和布局。
npm i --save @nativescript-community/ui-material-progress
- 版本:7.2.62
- GitHub: https://github.com/nativescript-community/ui-material-components/tree/master
- NPM: https://npmjs.net.cn/package/%40nativescript-community%2Fui-material-progress
- 下载
- 昨日:772
- 上周:4602
- 上月:15982
NativeScript 材料线性进度指示器
为 NativeScript 提供的 Material Design 线性进度指示器组件。
内容
安装
适用于 NativeScript 7.0+
tns plugin add @nativescript-community/ui-material-progress
适用于 NativeScript 6.x
tns plugin add nativescript-material-progress
如果使用 tns-core-modules
tns plugin add [email protected]
在添加插件后务必运行新构建,以避免任何问题。
变更日志
常见问题解答
用法
纯 NativeScript
重要:请确保在 Page 元素上包含 xmlns:mdp="@nativescript-community/ui-material-progress"
XML
<Page xmlns:mdp="@nativescript-community/ui-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-community/ui-material-progress/angular";
@NgModule({
imports: [
NativeScriptMaterialProgressModule,
...
],
...
})
<MDProgress v-model="value" maxValue="100"></MDProgress>
NativeScript + Vue
import ProgressPlugin from '@nativescript-community/ui-material-progress/vue';
Vue.use(ProgressPlugin);
<MDProgress value="50" maxValue="100"></MDProgress>
API
属性
继承自 NativeScript Progress 组件,因此它已经具有所有相同的属性。
- elevation 可选
设置进度条高度的属性。这将增加进度的 'drop-shadow'。
- rippleColor 可选
设置进度条涟漪颜色的属性。