# rntpc_react-native-qrcode **Repository Path**: openharmony-sig/rntpc_react-native-qrcode ## Basic Information - **Project Name**: rntpc_react-native-qrcode - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: https://gitee.com/openharmony-sig/rntpc_react-native-qrcode - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-09-30 - **Last Updated**: 2025-05-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 🚨 **重要提示 | IMPORTANT** > > **⚠️ 此代码仓已归档。新地址请访问 [rntpc_react-native-qrcode](https://gitcode.com/openharmony-sig/rntpc_react-native-qrcode)。| ⚠️ This repository has been archived. For the new address, please visit [rntpc_react-native-qrcode](https://gitcode.com/openharmony-sig/rntpc_react-native-qrcode).** > --- > # THIS PROJECT IS NO LONGER MAINTAINED # react-native-qrcode A react-native component to generate [QRcode](http://en.wikipedia.org/wiki/QR_code), not only support English. ## Installation ```sh npm install react-native-qrcode --save ``` ## Usage ```jsx 'use strict'; import React, { Component } from 'react' import QRCode from 'react-native-qrcode'; import { AppRegistry, StyleSheet, View, TextInput } from 'react-native'; class HelloWorld extends Component { state = { text: 'http://facebook.github.io/react-native/', }; render() { return ( this.setState({text: text})} value={this.state.text} /> ); }; } const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: 'white', alignItems: 'center', justifyContent: 'center' }, input: { height: 40, borderColor: 'gray', borderWidth: 1, margin: 10, borderRadius: 5, padding: 5, } }); AppRegistry.registerComponent('HelloWorld', () => HelloWorld); module.exports = HelloWorld; ``` ## Available Props prop | type | default value ----------|----------------------|-------------- `value` | `string` | `http://facebook.github.io/react-native/` `size` | `number` | `128` `bgColor` | `string` (CSS color) | `"#000"` `fgColor` | `string` (CSS color) | `"#FFF"` # Licenses All source code is licensed under the [MIT License](https://github.com/cssivision/react-native-qrcode/blob/master/LICENSE).