@nativescript-community/ui-pager-indicator
A NativeScript 分页指示器,适用于分页器/轮播图/CollectionView
npm i --save @nativescript-community/ui-pager-indicator

@nativescript-community/ui-pager-indicator

Downloads per month NPM Version

A NativeScript 分页指示器,适用于分页器/轮播图/CollectionView


iOS 示例 Android 示例

目录

安装

从您项目的根目录运行以下命令

ns plugin add @nativescript-community/ui-pager-indicator

API

属性

属性 类型
color Colorstring
selectedColor Colorstring
PagerIndicator add page control for Pager or other Paging Views.

在 Vue 中的使用

将模块导入您的项目中。

import Vue from 'nativescript-vue';
Vue.registerElement('PagerIndicator', () => require('@nativescript-community/ui-pager-indicator').PagerIndicator);

然后在您的模板中

<Pager id="pager" :items="items"
...
</Pager>
<PagerIndicator pagerViewId="pager"/>

示例