Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
react-fancy-qrcode
Advanced tools
Customizable QR code generated for React & React Native.
This project was inspired by react-native-qrcode-svg.
With Yarn
yarn add react-fancy-qrcode
Or with npm
npm install -S react-fancy-qrcode
For React native and iOS, you'll need to perform a pod-install:
npx pod-install ios
<QRCode
value={"https://github.com/jgillick/react-fancy-qrcode"}
size={400}
dotScale={0.8}
dotRadius="50%"
positionRadius={["5%", "1%"]}
errorCorrection="H"
logo={require("images/fire.png")}
/>
React native only! (see caveat below)
You can use the react ref to download the image data from the QR code SVG.
import React, { useCallback, useRef } from 'react';
import QRCode, { QRCodeRef } from 'react-fancy-qrcode';
function RenderQRCode() {
const svgRef = useRef<QRCodeRef>();
const download = useCallback(() => {
svgRef.current?.toDataURL((data) => {
console.log(data);
})
}, [svgRef.current])
return (
<QRCode
ref={svgRef}
value={"https://github.com/jgillick/react-fancy-qrcode"}
size={400}
/>
)
}
On web you cannot export the binary SVG data, but you can get the SVG source.
import React, { useCallback, useRef } from 'react';
import QRCode, { QRCodeRef } from 'react-fancy-qrcode';
function RenderQRCode() {
const svgRef = useRef<QRCodeRef>();
const download = useCallback(() => {
const svgSource = svgRef.current?.outerHTML;
console.log(svgSource)
}, [svgRef.current])
return (
<QRCode
ref={svgRef}
value={"https://github.com/jgillick/react-fancy-qrcode"}
size={400}
/>
)
}
Name | Default | Description |
---|---|---|
value | "" | The value to encode into the QR code |
size | 100 | The pixel width/height of the generated QR code |
margin | 0 | Space around the QR code (useful if you're generating an image with it) |
logo | - | Logo image to place in the center of the QR code (either {uri: 'base64string'} or require('pathToImage') ) |
logoSize | - | The size your logo should be. Defaults to 20% of the size prop. |
backgroundColor | white | The QR code background color |
color | white | Primary color of the QR code dots. If this is an array of strings, it's treated as a linear gradient |
colorGradientDirection | ['0%', '0%', '100%', '100%'] | If color is defined as a linear gradient, this defines the gradient direction. Array format: [x1, y1, x2, y2] |
positionColor | - | Color of the positioning squares in the top-left, top-right, and bottom-left. Defaults to the color property |
positionGradientDirection | ['0%', '0%', '100%', '100%'] | See colorGradientDirection explanation. |
positionRadius | 0 | The radius of the positioning pattern squares. See examples below. |
dotScale | 1 | Reduce the QR code dot size by setting this to a value between .1 - 1 . |
dotRadius | 0 | The corner radius of each dot as a pixel or percent |
errorCorrection | M | QR Code error correction mode |
The three large squares in the QR code (top-left, top-right, bottom-left) are used by QR code readers to determine the position of the QR code. NOTE: If you customize the squares too much, QR code readers might not recognize the QR code.
If defined as a single pixel/percent value, this will be used for all 3 patters, both outside and inside squares.
<QRCode
positionRadius="5%"
value={"https://github.com/jgillick/react-fancy-qrcode"}
size={400}
/>
If defined as an array, the first index is for the outer square and the second is for the inner square of each pattern.
<QRCode
positionRadius={["20%", 10]}
value={"https://github.com/jgillick/react-fancy-qrcode"}
size={400}
/>
You can also define each radius as an object with an rx and ry value (learn more)
<QRCode
positionRadius={{ rx: "5%", ry: "10%" }}
value={"https://github.com/jgillick/react-fancy-qrcode"}
size={400}
/>
or
<QRCode
positionRadius={[
{ rx: "5%", ry: "10%" },
{ rx: 1, ry: 20 },
]}
value={"https://github.com/jgillick/react-fancy-qrcode"}
size={400}
/>
<QRCode
value={"https://github.com/jgillick/react-fancy-qrcode"}
size={300}
color={["#2BC0E4", "#EAECC6"]}
positionColor="#348AC7"
/>
FAQs
Customizable QR code generated for React & React Native
The npm package react-fancy-qrcode receives a total of 127 weekly downloads. As such, react-fancy-qrcode popularity was classified as not popular.
We found that react-fancy-qrcode demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.