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 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-native-skia-ui

v0.2.0

Published

Cross platform UI primitives implemented with `@shopify/react-native-skia`

Downloads

792

Readme

react-native-skia-ui

showcase.webm

Cross platform UI primitives implemented with @shopify/react-native-skia. This library provides functionality of system UI components like ActivityIndicator for Android, IOS and Web.

Why not use ActivityIndicator from react-native?

  • react-native-skia-ui components are highly customizable, you can change the color, size, stroke width, stroke cap, etc.
  • react-native-skia-ui allows you to animate the progress of the ActivityIndicator (for example, you can animate the progress of MaterialCircularProgressIndicator.Determinate). It's powered by react-native-reanimated.
  • react-native-skia-ui components are consistent across platforms. For example, MaterialCircularProgressIndicator looks the same on Android, IOS and Web (unlike ActivityIndicator from react-native).

Cases when you should use ActivityIndicator from react-native:

  • You don't need to customize the ActivityIndicator and you don't need to animate it.
  • You need native look and feel of the ActivityIndicator on Android and IOS (for most cases, it's what you need).

Components are ported from flutter and are implemented using @shopify/react-native-skia and react-native-reanimated.

Installation

npm install react-native-skia-ui

Peer Dependencies

This library has the following peer dependencies:

  • @shopify/react-native-skia
  • react-native-reanimated

If you don't have them installed, you can install them with:

npm install @shopify/react-native-skia react-native-reanimated

Usage

For now, the library only provides a few components:

react-native-skia-ui/material-circular-progress-indicator

  • MaterialCircularProgressIndicator.Determinate
  • MaterialCircularProgressIndicator.Indeterminate
  • MaterialCircularProgressIndicator (blend of the two above)

react-native-skia-ui/cupertino-activity-indicator

  • CupertinoActivityIndicator
  • CupertinoActivityIndicator.PartiallyRevealed

Example

import * as React from 'react';

import { StyleSheet, Text, View } from 'react-native';
import { MaterialCircularProgressIndicator } from 'react-native-skia-ui/material-circular-progress-indicator';
import { useSharedValue, withTiming } from 'react-native-reanimated';
import { CupertinoActivityIndicator } from 'react-native-skia-ui/cupertino-activity-indicator';
export default function App() {
  const progress = useSharedValue(0);
  React.useEffect(() => {
    const id = setInterval(() => {
      progress.value = withTiming(Math.random(), { duration: 1000 });
    }, 1000);

    return () => clearInterval(id);
  });

  return (
    <View style={styles.container}>
      <Text>Determinate progress indicators</Text>
      <MaterialCircularProgressIndicator.Determinate
        size={56}
        valueColor="green"
        strokeWidth={5}
        strokeCap="round"
        value={progress}
      />
      <MaterialCircularProgressIndicator.Determinate
        size={100}
        valueColor="blue"
        strokeWidth={4}
        strokeCap="round"
        value={progress}
      />
      <CupertinoActivityIndicator.PartiallyRevealed
        color="black"
        progress={progress}
        radius={50}
      />

      <Text>Indeterminate progress indicators</Text>
      <MaterialCircularProgressIndicator.Indeterminate
        size={40}
        valueColor="black"
      />
      <MaterialCircularProgressIndicator.Indeterminate
        size={100}
        valueColor="red"
        backgroundColor={'#f0f0f0'}
        strokeWidth={8}
        strokeCap="round"
      />
      <CupertinoActivityIndicator color="black" radius={50} />
    </View>
  );
}

Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

License

MIT


Made with create-react-native-library