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

expo-m3-progress

v0.1.0

Published

Material You Expressive Progress Indicators

Readme

expo-m3-progress

Material 3 Expressive Progress Indicators for Expo and React Native.

This library provides highly customizable progress indicators following the Material 3 Expressive design system, including wavy animations on Android.

Features

  • Material 3 Expressive: Implements the latest Material Design progress indicator specs.
  • 🌊 Wavy Animation: Smooth, configurable wavy motion (Android native).
  • 🎨 Highly Customizable: Control colors, thickness, corner radius, gaps, and stop indicators.
  • 📱 Native Performance: Built with Expo Modules for optimal performance.
  • 🔄 Indeterminate & Determinate: Supports both modes.

Installation

npx expo install expo-m3-progress

Usage

Basic Usage

import { ExpoM3ProgressView } from 'expo-m3-progress';

// Linear Progress
<ExpoM3ProgressView
  variant="linear"
  indeterminate={true}
  indicatorColor="#6750A4"
  trackColor="#E7E0EB"
  style={{ width: '100%', height: 16 }}
/>

// Circular Progress
<ExpoM3ProgressView
  variant="circular"
  progress={0.5}
  indeterminate={false}
  indicatorSize={48}
  style={{ width: 48, height: 48 }}
/>

Advanced (Wavy Animation)

The wavy animation is a unique feature of the Material 3 expressive indicators on Android.

<ExpoM3ProgressView
  variant="linear"
  wavy={true}
  waveAmplitude={4}
  wavelength={24}
  waveSpeed={2}
  indicatorTrackGap={4}
  trackStopIndicatorSize={4}
  style={{ width: '100%', height: 20 }}
/>

Props

| Prop | Type | Default | Description | | :--- | :--- | :--- | :--- | | variant | 'linear' \| 'circular' | 'circular' | The style of the progress indicator. | | indeterminate | boolean | true | Whether the progress is indeterminate. | | progress | number | 0 | The progress value (0 to 1). Only used when indeterminate is false. | | indicatorColor | string | - | Color of the active indicator. | | trackColor | string | - | Color of the progress track. | | trackThickness | number | 4 | Thickness of the track and indicator. | | trackCornerRadius | number | thickness / 2 | Corner radius of the track ends. | | indicatorTrackGap | number | 4 | Gap between the indicator and the track. |

Circular Specific Props

| Prop | Type | Default | Description | | :--- | :--- | :--- | :--- | | indicatorSize | number | 48 | The diameter of the circular indicator. |

Linear Specific Props

| Prop | Type | Default | Description | | :--- | :--- | :--- | :--- | | trackStopIndicatorSize | number | thickness | Size of the dot at the end of the track. |

Wavy Animation Props (Android)

| Prop | Type | Default | Description | | :--- | :--- | :--- | :--- | | wavy | boolean | false | Enable wavy animation. | | waveAmplitude | number | 0 | Height of the waves. | | wavelength | number | 0 | Distance between wave peaks. | | waveSpeed | number | 0 | Speed of the wave animation. |

Platform Support

  • Android: Full support including Material 3 Expressive and Wavy animations.
  • ⚠️ iOS: Currently maps to standard ActivityIndicator (wavy and expressive M3 props are ignored).
  • ⚠️ Web: Not currently supported (returns null).

License

MIT