14.1.24 • Published 7 days ago

@nativescript-community/ui-pager-indicator v14.1.24

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
7 days ago
iOS DemoAndroid Demo

Table of Contents

Installation

Run the following command from the root of your project:

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

API

Properties

PropertyType
colorColor or string
selectedColorColor or string
PagerIndicator add page control for Pager or other Paging Views.

Usage in Vue

Import the module into your project.

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

then in your template:

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

Examples