
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
react-native-qrcode-composer
Advanced tools
React Native QR Code Composer is an advanced, highly customizable library designed to seamlessly integrate QR codes into your React Native applications. Leveraging the robustness of qrcode
and the versatility of react-native-svg
, this library offers unparalleled flexibility and ease of use, ensuring your QR code implementations are both beautiful and functional.
Android | iOS |
---|---|
![]() | ![]() |
To install the library, you can use npm
or yarn
:
npm install react-native-qrcode-composer
or
yarn add react-native-qrcode-composer
React Native QR Code Composer
is designed to work seamlessly within the React Native ecosystem. However, it relies on several peer dependencies that need to be installed in your project. Ensure you have the following packages installed:
Here's a basic example of how to use the library:
import QRCode from 'react-native-qrcode-composer';
import Logo from 'assets/logo.svg';
import logo from 'assets/logo.png';
// ...
// Basic QR Code Example
<QRCode value="https://github.com/afonsograca/react-native-qrcode-composer" />
// Advanced Usage with SVG and PNG logos
<QRCode value="QR code with SVG logo" logo={Logo} />
<QRCode value="QR code with PNG logo" logo={logo} />
The react-native-qrcode-composer
library provides several props that you can use to customize the QR code and its appearance. These props allow you to specify the content of the QR code, its size, and the logo that appears in the center of the QR code, among other things. You can also specify a function that is called when an error occurs.
The following sections provide more details about these props and how to use them.
Property | Type | Optional | Default | Description |
---|---|---|---|---|
value | string | Yes | 'QR code message' | The content to be encoded in the QR code |
size | number | Yes | 100 | The size of the QR code in pixels |
logo | LogoProp | Yes | undefined | A custom logo to be displayed at the center of the QR code |
logoStyle | LogoStyle | Yes | undefined | The style of the logo |
style | QRCodeStyle | Yes | undefined | The style of the QR code container |
getRef | React.Ref<Svg> | Yes | undefined | A ref to the QR code SVG element for direct access |
onError | (error: Error) => void | Yes | undefined | Callback function triggered if an error occurs during rendering |
testID | string | Yes | 'react-native-qrcode-composer' | Identification prefix for the internal parts of the component |
Property | Type | Optional | Default | Description |
---|---|---|---|---|
size | number | Yes | 20% of the QR code size | The size of the logo in pixels |
backgroundColor | string | Yes | transparent | The background color of the logo |
margin | number | Yes | 0 | The margin around the logo in pixels |
borderRadius | number | Yes | 0 | The border radius of the logo's corners |
Property | Type | Optional | Default | Description |
---|---|---|---|---|
color | string | Yes | black | The color of the QR code pattern |
backgroundColor | string | Yes | white | The background color of the entire QR code |
quietZone | number | Yes | 0 | The margin around the QR code |
cornerRadius | number | Yes | 0 | The corner radius applied the QR code's quiet zone |
errorCorrectionLevel | ErrorCorrectionLevel | Yes | M | The error correction level, enhancing robustness |
linearGradient | [ColorValue, ColorValue] | Yes | undefined | The colors for a linear gradient effect |
gradientDirection | [NumberProp, NumberProp, NumberProp, NumberProp] | Yes | ['0%', '0%', '100%', '100%'] | The directions for gradient application |
detectionMarkerOptions | DetectionMarkerOptions | Yes | undefined | Options for styling the detection markers |
patternOptions | PatternOptions | Yes | undefined | Options for modifying the QR pattern |
Property | Type | Optional | Default | Description |
---|---|---|---|---|
connected | boolean | Yes | true | Indicates if the blocks that make up the marker are connected |
cornerRadius | number | Yes | 0 | Corner radius applied to the detection markers. Note: This does not take precedence over outerCornerRadius or innerCornerRadius |
outerCornerRadius | number | Yes | 0 | Specific corner radius for the outer part of the markers |
innerCornerRadius | number | Yes | 0 | Specific corner radius for the inner part of the markers |
Property | Type | Optional | Default | Description |
---|---|---|---|---|
connected | boolean | Yes | false | Indicates if the blocks in the QR code pattern are connected |
cornerRadius | number | Yes | 0 | Corner radius for each block in the QR code pattern |
We have provided an example app for you to try out the library. You can find it in the /example
directory of the repository. To run the example app, navigate to its directory and run:
yarn
yarn start
Interested in contributing? Check out how you can make a difference in our contributing guide.
Please note that this project is adheres to a Contributor Code of Conduct. By participating in it you agree to abide by its terms.
This project is licensed under the MIT License - see the LICENSE file for details.
This project owes its gratitude to:
qrcode
and react-native-svg
for creating such robust foundations.[0.2.0] - 2024-06-21
FAQs
Unknown package
The npm package react-native-qrcode-composer receives a total of 1,175 weekly downloads. As such, react-native-qrcode-composer popularity was classified as popular.
We found that react-native-qrcode-composer demonstrated a not healthy version release cadence and project activity because the last version was released 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
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.