0.0.2 • Published 7 years ago

react-native-lite-qrcode v0.0.2

Weekly downloads
5
License
Apache-2.0
Repository
github
Last release
7 years ago

react-native-lite-qrcode

API

static propTypes = {
  ... ViewPropTypes,
  source: React.PropTypes.string.isRequired,
  level: React.PropTypes.oneOf(['L', 'M', 'Q', 'H']),
  color: ColorPropType,
  reverse: React.PropTypes.bool
};

static defaultProps = {
  level: 'L',
  color: '#000000',
  reverse: false
};
class QRPath {
  d: ART.Path;
  dim: number;
  constructor(msg: string = '', level: QRCode.Level = 'M', reverse: bool = false);
}