npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

react-native-fast-pager

v1.0.4

Published

High-performance swipe pager for React Native

Readme

react-native-fast-pager

High-performance swipe pager for React Native.

한국어

Why?

Rendering Optimization

react-native-fast-pager uses react-native-screens and react-freeze internally to optimize rendering.

Each child page is assigned an activityState:

| Value | State | Description | |---|---|---| | 2 | FULL_ACTIVE | Currently focused page. Renders normally. | | 1 | PARTIAL_ACTIVE | Page in transition (about to be focused or departing). Rendered but does not receive touch events. | | 0 | INACTIVE | Inactive page. Rendering is frozen by react-freeze and detached from the native view hierarchy by react-native-screens. |

This prevents unnecessary re-renders of off-screen children and reduces native view hierarchy overhead.

FlatList Integration

The FastPager component can be used as a FlatList item, making it easy to build tab-based UIs with sticky headers. See the example.

Installation

yarn add react-native-fast-pager react-native-screens react-freeze

or

npm install react-native-fast-pager react-native-screens react-freeze

Native setup for react-native-screens is required. See the react-native-screens installation guide.

Usage

Basic

import { useState } from 'react';
import FastPager from 'react-native-fast-pager';

function App() {
  const [index, setIndex] = useState(0);

  return (
    <FastPager index={index} onIndexChange={setIndex}>
      <ScreenA />
      <ScreenB />
      <ScreenC />
    </FastPager>
  );
}

Render Function

Pass children as functions to receive activityState, priority, and diff:

<FastPager index={index} onIndexChange={setIndex}>
  {({ activityState, diff }) => <ScreenA activityState={activityState} />}
  {({ activityState, diff }) => <ScreenB activityState={activityState} />}
</FastPager>

With FlatList

An example of building a sticky tab bar with FlatList:

import { useCallback, useMemo, useRef, useState } from 'react';
import { Animated, FlatList, View } from 'react-native';
import FastPager from 'react-native-fast-pager';

const ITEMS = ['header', 'tab', 'pager'] as const;

function App() {
  const [tabIndex, setTabIndex] = useState(0);
  const progress = useRef(new Animated.Value(0)).current;
  const onProgressChange = useMemo(
    () =>
      Animated.event([{ nativeEvent: { progress } }], {
        useNativeDriver: true,
      }),
    [progress]
  );

  const renderItem = useCallback(
    ({ item }: { item: (typeof ITEMS)[number] }) => {
      switch (item) {
        case 'header':
          return <Header />;
        case 'tab':
          return <TabBar index={tabIndex} progress={progress} onPress={setTabIndex} />;
        case 'pager':
          return (
            <FastPager
              index={tabIndex}
              onIndexChange={setTabIndex}
              onProgressChange={onProgressChange}
            >
              <ScreenA />
              <ScreenB />
            </FastPager>
          );
      }
    },
    [tabIndex, progress, onProgressChange]
  );

  return (
    <FlatList
      data={ITEMS as unknown as (typeof ITEMS)[number][]}
      renderItem={renderItem}
      keyExtractor={(item) => item}
      stickyHeaderIndices={[1]}
    />
  );
}

FastPager reports progress through onProgressChange. It accepts a plain callback or an Animated.event mapping with either useNativeDriver: true or useNativeDriver: false.

With useNativeDriver: true and the standard [{ nativeEvent: { progress } }] mapping, the pager drives the mapped Animated.Value directly with its native-driver animations, so transition frames never cross the JS thread. Everything reading that value must stay native-driver compatible (transforms, opacity), and the value should not be animated from anywhere else. With useNativeDriver: false or a plain callback, updates are delivered from JavaScript on every frame.

Props

| Prop | Type | Default | Description | |---|---|---|---| | children | PagerItemType[] | required | Pages to transition between. ReactElement or render function. | | index | number | 0 | Currently active page index. | | onIndexChange | (index: number) => void | - | Called when a swipe picks a different page, on finger-up, before the settle animation runs. Not called for a snap-back, for a gesture the platform terminates, or for index prop changes. goTo is reported once it lands. | | onProgressChange | (event: { nativeEvent: { progress: number } }) => void | - | Called as animated progress changes. Compatible with Animated.event([{ nativeEvent: { progress } }]); with useNativeDriver: true the mapped value is driven natively. | | renderMode | 'view' \| 'native' | 'native' | Set to 'native' to use the native ScreenContainer implementation. | | animationType | 'slide' \| 'fade' \| 'fade-slide' \| 'none' | 'slide' | Transition animation type. | | swipeEnabled | boolean | true | Whether swipe gestures are enabled. | | vertical | boolean | false | Set to true to transition vertically. | | keepAlive | number | undefined (unlimited) | Maximum number of pages to keep mounted. Used for memory optimization. | | freeze | boolean | true | Whether to apply react-freeze to inactive pages. | | layout | { width?: number; height?: number } | - | Manually specify container size. Auto-measured via onLayout if not provided. | | style | StyleProp<ViewStyle> | - | Container style. | | onSwipeStart | () => void | - | Called when a swipe gesture starts. | | onSwipeEnd | (index: number) => void | - | Called after the swipe animation completes. | | onLayout | (event: LayoutChangeEvent) => void | - | Container layout event. |

Ref Methods

Access imperative methods via ref:

| Method | Type | Description | |---|---|---| | goTo | (index: number, animated?: boolean) => void | Navigate to the given index. | | progress | Animated.Value | Current animated progress value. |

Exports

import FastPager, {
  ActivityState,
  type RenderMode,
  type AnimationType,
  type FastPagerProgressChangeEvent,
  type FastPagerInstance,
  type FastPagerProps,
} from 'react-native-fast-pager';

License

MIT