内容简介:Linking is not needed anymore.
rn-qr-generator
Getting started
$ npm install rn-qr-generator --save
Mostly automatic installation
$ react-native link rn-qr-generator
Important:
Linking is not needed anymore. react-native@0.60.0+
supports dependencies auto linking.
For iOS you also need additional step to install auto linked Pods (Cocoapods should be installed):
cd ios && pod install && cd ../
Manual installation
iOS
-
In XCode, in the project navigator, right click
Libraries
➜Add Files to [your project's name]
-
Go to
node_modules
➜rn-qr-generator
and addRNQrGenerator.xcodeproj
-
In XCode, in the project navigator, select your project. Add
libRNQrGenerator.a
to your project'sBuild Phases
➜Link Binary With Libraries
-
Run your project (
Cmd+R
)<
Android
-
Open up
android/app/src/main/java/[...]/MainActivity.java
-
Add
import com.gevorg.reactlibrary.RNQrGeneratorPackage;
to the imports at the top of the file -
Add
new RNQrGeneratorPackage()
to the list returned by thegetPackages()
method
-
Append the following lines to
android/settings.gradle
:include ':rn-qr-generator' project(':rn-qr-generator').projectDir = new File(rootProject.projectDir, '../node_modules/rn-qr-generator/android')
-
Insert the following lines inside the dependencies block in
android/app/build.gradle
:compile project(':rn-qr-generator')
Usage
import RNQRGenerator from 'rn-qr-generator'; RNQRGenerator.generate({ value: 'https://github.com/gevorg94/rn-qr-generator', // required height: 100, width: 100, base64: false, // default 'false' backgroundColor: 'black', // default 'white' color: 'white', // default 'black' }) .then(response => { const { uri, width, height, base64 } = response; this.setState({ imageUri: uri }); }) .catch(error => console.log('Cannot create QR code', error));
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
C算法(第二卷:图算法)(第3版)
塞德威克(Sedgewick Robert) / 周良忠 / 第1版 (2004年1月1日) / 2004-4 / 38.0
《C算法(第2卷)(图算法)(第3版)(中文版)》所讨论的图算法,都是实际中解决图问题的最重要的已知方法。《C算法(第2卷)(图算法)(第3版)(中文版)》的主要宗旨是让越来越多需要了解这些算法的人的能够掌握这些方法及基本原理。书中根据基本原理从基本住处开始循序渐进地讲解,然后再介绍一些经典方法,最后介绍仍在进行研究和发展的现代技术。精心挑选的实例、详尽的图示以及完整的实现代码与正文中的算法和应用......一起来看看 《C算法(第二卷:图算法)(第3版)》 这本书的介绍吧!