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-m3

v0.2.2

Published

react-native-m3 is a react native package built with Nitro

Readme

react-native-m3

A premium, high-performance React Native Material 3 Expressive component library built with Nitro Modules.

Bring stunning Material 3 animations to your app with native performance and smooth 60 FPS waves.

🚀 Features

  • Built with Nitro: Blazing fast native bridge for ultra-low latency.
  • WavyProgressIndicator: The new Material 3 Expressive wavy circular progress indicator.
  • WavySlider: Fully customizable wavy slider with smooth animations, velocity control, and incremental wave effects.
  • LyricsView: Synchronized lyrics display with line-synced, word-synced, and static modes.
  • LoadingIndicator: Material 3 Expressive loading indicator that morphs between various geometric shapes.
  • Fully Customizable: Control colors, strokes, amplitude, wavelength, and more.
  • Lightweight: Zero-overhead views powered by Jetpack Compose (Android).

📦 Installation

npm install react-native-m3 react-native-nitro-modules

[!IMPORTANT] This library requires React Native 0.78.0 or higher to support Nitro Views.

🛠️ Components

1. WavyProgressIndicator

A circular progress indicator that features an expressive wavy animation on the track.

import { WavyProgressIndicator } from 'react-native-m3';

// ...
<WavyProgressIndicator
  progress={0.5}
  color="#6200EE"
  trackColor="#E1D5FF"
  strokeWidth={6}
  amplitude={0.7}
/>

Props

| Prop | Type | Default | Description | | :--- | :--- | :--- | :--- | | progress | number | Required | The progress (0.0 to 1.0). | | color | string | Material Default | Hex color of the indicator. | | trackColor | string | Material Default | Hex color of the track. | | strokeWidth | number | 4 | Stroke width in DP. | | trackStrokeWidth| number | 4 | Track stroke width in DP. | | gapSize | number | 4 | Gap between track and progress in DP. | | amplitude | number | 0.2 | Wave amplitude (0.0 to 1.0). | | wavelength | number | 20 | Length of a single wave cycle in DP. | | waveSpeed | number | 10 | Speed of wave movement in DP/s. |


2. WavySlider

A highly expressive slider that transforms the track into a dynamic wave.

import { WavySlider, callback } from 'react-native-m3';

// ...
<WavySlider
  value={sliderValue}
  onValueChange={callback((v: number) => setSliderValue(v))}
  waveHeight={10}
  waveLength={30}
  waveDirection="TAIL"
/>

[!NOTE]
Due to Nitro's high-performance bridge architecture, callbacks passed to custom views must be wrapped in the callback() helper.

Props

| Prop | Type | Default | Description | | :--- | :--- | :--- | :--- | | value | number | Required | The current value of the slider. | | onValueChange | (v: number) => void | - | Invoked during dragging. | | onValueChangeFinished | () => void | - | Invoked when dragging ends. | | valueRangeMin | number | 0 | Minimum range value. | | valueRangeMax | number | 1 | Maximum range value. | | steps | number | 0 | Number of discrete steps (0 for continuous). | | waveLength | number | 20 | Wave cycle length in DP. | | waveHeight | number | 6 | Wave amplitude in DP. | | waveVelocity | number | 10 | Speed of animation in DP/s. | | waveDirection | 'HEAD' \| 'TAIL' \| 'LEFT' \| 'RIGHT' | 'TAIL' | Direction of wave travel. | | waveThickness | number | 4 | Thickness of the active wavy track. | | trackThickness | number | 4 | Thickness of the inactive track. | | incremental | boolean | false | If wave increases height towards thumb. | | enabled | boolean | true | Interaction toggle. | | activeTrackColor| string | - | Active track hex color. | | thumbColor | string | - | Thumb hex color. |


3. LyricsView

A synchronized lyrics display component with support for line-synced, word-synced (rich sync), and static lyrics.

import { LyricsView, callback } from 'react-native-m3';

const lyrics = [
  { words: "Hello world", startTimeMs: 0 },
  { words: "This is a test", startTimeMs: 3000 },
  { words: "Of synced lyrics", startTimeMs: 6000 },
];

// ...
<LyricsView
  style={{ width: '100%', height: 300 }}
  lines={lyrics}
  syncType="LINE_SYNCED"
  currentTimeMs={currentPlaybackTime}
  onLineClick={callback((ms: number) => seekTo(ms))}
  activeTextColor="#FFFFFF"
  inactiveTextColor="#595959"
/>

[!NOTE]
For rich sync (word-by-word highlighting), pass syncType="RICH_SYNCED" and include word timing in the format: "word<startMs,endMs> word<startMs,endMs>"

Props

| Prop | Type | Default | Description | | :--- | :--- | :--- | :--- | | lines | LyricLine[] | Required | Array of lyric lines. | | syncType | 'LINE_SYNCED' \| 'RICH_SYNCED' \| 'UNSYNCED' | Required | Sync mode. | | currentTimeMs | number | Required | Current playback position in ms. | | translatedLines | LyricLine[] | - | Optional translated lyrics. | | activeTextColor | string | #FFFFFF | Hex color for active line. | | inactiveTextColor | string | #595959 | Hex color for inactive lines. | | translationColor | string | #FFFF00 | Hex color for translations. | | fontSize | number | 24 | Font size in SP. | | fontFamily | string | - | Custom font family name (must be registered in the app). | | showScrollShadows | boolean | true | Show gradient shadows. | | backgroundColor | string | #242424 | Background for shadows. | | onLineClick | (ms: number) => void | - | Tap callback for seeking. |

Custom Fonts

The fontFamily prop uses dynamic resolution via React Native's standard mechanisms. You can use fonts loaded via expo-font or registered through react-native.config.js.

<LyricsView
  // ...
  fontFamily="MyCustomFont-Bold"
/>

LyricLine Type

interface LyricLine {
  words: string;        // Text content
  startTimeMs: number;  // Start time in milliseconds
  endTimeMs?: number;   // End time (optional)
}

4. LoadingIndicator (@ExperimentalMaterial3ExpressiveApi)

A modern Material Design loading indicator that features a morphing animation between various geometric shapes (polygons).

import { LoadingIndicator } from 'react-native-m3';

// ...
<LoadingIndicator
  style={{ width: 48, height: 48 }}
  color="#6200EE"
  polygonVertices={[3, 5, 8, 12]} // Morph between triangle, pentagon, octagon, etc.
/>

Props

| Prop | Type | Default | Description | | :--- | :--- | :--- | :--- | | color | string | Material Default | Hex color of the loading indicator. | | polygonVertices | number[] | [...MaterialDefault] | Sequence of vertices for the morphing shapes (min 2). |

🏗️ Requirements

  • Android: SDK 24+
  • iOS: Coming Soon
  • React Native: 0.78.0+

📄 License

MIT


Built with ❤️ by Kamp0010 using Nitro Modules.