
Security News
Deno 2.6 + Socket: Supply Chain Defense In Your CLI
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.
@nativescript-community/ui-pager
Advanced tools
A NativeScript Pager / Carousel component that allows the user to swipe left and right through pages of data.
![]() | ![]() |
|---|---|
| iOS Demo | Android Demo |
Run the following command from the root of your project:
ns plugin add @nativescript-community/ui-pager
| Property | Type |
|---|---|
| items | array or ItemsSource |
| selectedIndex | number |
| canGoRight | boolean |
| canGoLeft | boolean |
| spacing | PercentLengthType |
| peaking | PercentLengthType |
| perPage | number |
| indicator | string ('disable', 'none', 'worm', 'fill', 'swap', 'thin_worm', 'flat') |
| circularMode | boolean |
| autoPlayDelay | number |
| autoPlay | boolean |
| orientation | string ('horizontal' or 'vertical') |
| autoPlay | boolean |
| disableSwipe | boolean |
| showIndicator | boolean |
| transformers | string |
Pager for NativeScript supports the core ObservableArray module part of the core NativeScript modules collection. Using an ObservableArray instance as a source for Pager will ensure that changes in the source collection will be automatically taken care of by the control.
Import the module into your project.
import { PagerModule } from "@nativescript-community/ui-pager/angular";
@NgModule({
imports: [
PagerModule,
],
})
Import the module into your project.
import { Pager } from '@nativescript-community/ui-pager/react';
Import the module into your project.
import { registerNativeViewElement } from 'svelte-native/dom';
import PagerElement from '@nativescript-community/ui-pager/svelte';
import { PagerItem } from '@nativescript-community/ui-pager';
PagerElement.register();
registerNativeViewElement('pageritem', () => PagerItem);
Import the module into your project.
import Vue from 'nativescript-vue';
import Pager from '@nativescript-community/ui-pager/vue';
Vue.use(Pager);
You can define custom transformer for iOS/Android
You can follow the Scale example for iOS and Android to create your custom transformer.
Then you can register your transformer on app start with (this example registered the included but not registered Scale transformer):
import { Pager } from '@nativescript-community/ui-pager';
import transformer from '@nativescript-community/ui-pager/transformers/Scale';
Pager.registerTransformer('scale', transformer)
Then you can use that transformer with the transformers property of Pager
FAQs
A NativeScript Pager / Carousel component that allows the user to swipe left and right through pages of data.
We found that @nativescript-community/ui-pager demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 20 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.

Security News
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.