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

@dtyptr/rn-skia-qr

v0.1.0

Published

Customizable React Native QR code renderer powered by Skia.

Downloads

111

Readme

rn-skia-qr

Customizable React Native QR code renderer powered by Skia.

rn-skia-qr is built for branded QR codes: styled body modules, independent eye frame and eye ball shapes, custom colors, and an optional logo wrapper.

Install

npm install @dtyptr/rn-skia-qr @shopify/react-native-skia react-native-reanimated

For Expo projects, install native peers with Expo:

npx expo install @shopify/react-native-skia react-native-reanimated
npm install @dtyptr/rn-skia-qr

Basic Usage

import { QRCode } from "@dtyptr/rn-skia-qr";

export function Example() {
  return <QRCode value="https://example.com" size={240} />;
}

Styled QR

import { QRCode } from "@dtyptr/rn-skia-qr";

export function StyledExample() {
  return (
    <QRCode
      value="https://example.com"
      size={240}
      foregroundColor="#111827"
      backgroundColor="#ffffff"
      errorCorrectionLevel="H"
      bodyShape="rounded"
      eyeFrameShape="extra-rounded"
      eyeBallShape="dot"
    />
  );
}

Logo QR

import { QRCodeWithLogo } from "@dtyptr/rn-skia-qr";

export function LogoExample() {
  return (
    <QRCodeWithLogo
      value="https://example.com"
      size={240}
      logoSource={require("./logo.png")}
      bodyShape="rounded"
      eyeFrameShape="rounded"
      eyeBallShape="dot"
    />
  );
}

QRCodeWithLogo defaults to errorCorrectionLevel="H" and uses a conservative logo size of about 17% of the QR width.

API

QRCode

| Prop | Type | Default | | --- | --- | --- | | value | string | required | | size | number | 240 | | foregroundColor | string | "#000000" | | backgroundColor | string | "#ffffff" | | errorCorrectionLevel | "L" \| "M" \| "Q" \| "H" | "M" | | bodyShape | "square" \| "dots" \| "rounded" | "square" | | eyeFrameShape | "square" \| "rounded" \| "extra-rounded" | "square" | | eyeBallShape | "square" \| "dot" \| "rounded" | "square" | | quietZone | number | 4 | | borderRadius | number | 16 | | animated | boolean | true | | containerStyle | StyleProp<ViewStyle> | undefined |

QRCodeWithLogo

Extends QRCodeProps with:

| Prop | Type | Default | | --- | --- | --- | | logoSource | ImageSourcePropType | undefined | | logoSize | number | size * 0.17 | | logoPadding | number | 6 | | logoBackgroundColor | string | "#ffffff" | | logoBorderRadius | number | 8 | | logoContainerStyle | StyleProp<ViewStyle> | undefined | | logoStyle | StyleProp<ViewStyle> | undefined |

Scan Reliability Tips

  • Use high foreground/background contrast.
  • Use errorCorrectionLevel="H" when rendering a logo.
  • Keep logo width at or below ~17% of QR size.
  • Avoid combining low contrast, bodyShape="dots", very small QR size, and a large logo.
  • Test real devices under low light before shipping branded QR codes.

Exporting or Sharing Logo QR Codes

QRCodeWithLogo renders the QR with Skia and the logo with React Native views. If you want to export/share the full QR including the logo, capture the wrapper view using react-native-view-shot.

Exports

export { QRCode, QRCodeWithLogo, createQRCodeMatrix, getRecommendedLogoSize } from "@dtyptr/rn-skia-qr";
export type {
  QRBodyShape,
  QRCodeMatrix,
  QRCodeProps,
  QRCodeWithLogoProps,
  QRErrorCorrectionLevel,
  QREyeBallShape,
  QREyeFrameShape,
} from "@dtyptr/rn-skia-qr";