Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@reeq/react-native-pdf417

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@reeq/react-native-pdf417

React-Native library which allows you to generate a barcode in pdf417 format

  • 1.0.6
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
35
decreased by-18.6%
Maintainers
1
Weekly downloads
 
Created
Source

react-native-pdf417

React-Native library which allows you to generate a barcode in pdf417 format

Android pdf417 writer is based on zxing library https://github.com/zxing/zxing

Screenshots

iOS Android

Installation

npm install @reeq/react-native-pdf417

or

yarn add @reeq/react-native-pdf417

and

cd ios/
pod install

Usage

import { Barcode } from '@reeq/react-native-pdf417';

// ...

const { width: windowWidth } = useWindowDimensions();

<Barcode
  text="hello pdf417"
  style={{ height: windowWidth / 4, width: windowWidth }}
  onPress={() => {
    console.log('barcode pressed');
  }}
/>;

Props

most of the default View props and:

  • text: text string you want to convert into barcode. Required

  • onPress: on barcode press event. Not required

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

Keywords

FAQs

Package last updated on 04 Sep 2024

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc