npm i --save nativescript-star-ratings
- 版本:1.0.0
- GitHub:
- NPM: https://npmjs.net.cn/package/nativescript-star-ratings
- 下载量
- 昨天:0
- 上周:1
- 上个月:14
NativeScript 星级评分
安装
tns plugin add nativescript-star-ratings
配置
重要:确保在页面元素中包含 xmlns:ui="nativescript-star-ratings"
<ui:StarRating emptyBorderColor="white" emptyColor="white" filledBorderColor="black" filledColor="red" value="2" max="5"/>
Angular
import { registerElement } from 'nativescript-angular/element-registry';
registerElement('StarRating', () => require('nativescript-star-ratings').StarRating);
<StarRating emptyBorderColor="white" emptyColor="white" filledBorderColor="black" filledColor="red" value="{{value}}" max="{{max}}"></StarRating>
API
属性
属性 | 默认值 | 类型 | 必需 | 描述 |
---|---|---|---|---|
emptyBorderColor | 蓝色 | 字符串 |
|
仅限 iOS |
emptyColor | 白色 | 字符串 |
|
|
filledBorderColor | 蓝色 | 字符串 |
|
仅限 iOS |
filledColor | 蓝色 | 字符串 |
|
|
值 | 0 | 数字 |
|
|
max | 5 | 数字 |
|
屏幕截图
iOS | Android |
---|---|
待办事项
- [ ] 自定义图片