Qr code scanner in react native

  Рет қаралды 36,965

Codify

Codify

Күн бұрын

Пікірлер
@SaadCodify
@SaadCodify Жыл бұрын
If you enjoy my content, I encourage you to hit the subscribe button.
@ashishchaubey9237
@ashishchaubey9237 Жыл бұрын
The package uses react-native-camera which is deprecated.
@Imraann0
@Imraann0 Жыл бұрын
Did you find an alternative ?
@mukeshjamod8992
@mukeshjamod8992 7 ай бұрын
another library compatible or not ??
@timtom3403
@timtom3403 Жыл бұрын
please continue making videos ,, very nice tutorial
@SaadCodify
@SaadCodify Жыл бұрын
thank you so much ❤️
@auroramendezc1452
@auroramendezc1452 Жыл бұрын
Hi, could you help me pls?? 🥺I have the next error: Error: react-native-permissions: NativeModule.RNPermissions is null.
@TalJa00
@TalJa00 6 ай бұрын
Have you had the answers
@katerinaneprasova2939
@katerinaneprasova2939 Жыл бұрын
Hello, great tutorial! Is there a way to force the scanner into a centered square box please?
@ibsharakrami8330
@ibsharakrami8330 Жыл бұрын
did you get the solutions?
@adityask865
@adityask865 5 ай бұрын
Nice tutorial, how can I call this qr scanner when i press a touchable icon in another module and export the data that was read?
@mahesh-zf4ll
@mahesh-zf4ll Жыл бұрын
Error: react-native-permissions: NativeModule.RNPermissions is null. please help
@dechols87
@dechols87 7 ай бұрын
same, did u find a solution?
@HarshithaS-e5l
@HarshithaS-e5l Жыл бұрын
i am gettitng error Invariant Violation: ViewPropTypes has been removed from React Native. Migrate to ViewPropTypes exported from 'deprecated-react-native-prop-types' how to resolve this while running the above code how to resolve
@Trishul-Industries
@Trishul-Industries Жыл бұрын
i am facing the same issue did you solve it yet now ?
@muhammadumer5483
@muhammadumer5483 Жыл бұрын
You need to make a patch for react native camera , remove the viewprops as they are depricated @@Trishul-Industries
@jumamakorere8597
@jumamakorere8597 Жыл бұрын
That's nice video, How can scan and stored on the database?
@ringgo6521
@ringgo6521 Жыл бұрын
when onRead properties in QRCodeScanner, update setData(data) and just call your function to submit your data to database. in this function, send your data with axios
@timtom3403
@timtom3403 Жыл бұрын
coould you tell how i can programmtically enable scanning again, like i want to click a button only then scanning shall start and when detected it should stop,and again when needed presss the button,,, i read the docs for react-native-qrcodescanner found out theres a method callled reactivate() but im not sure how to implement it
@SaadCodify
@SaadCodify Жыл бұрын
this is how you can make it reactive : make reactivate as True and if you want you can also give it time, that how much seconds it should take to get reactive, for example i have given it 5000 milliseconds = 5 seconds, you can adjust it according to your need ♥️
@timtom3403
@timtom3403 Жыл бұрын
@@SaadCodify ok bro thanks
@timtom3403
@timtom3403 Жыл бұрын
why dont you make more videos on react native
@SaadCodify
@SaadCodify Жыл бұрын
more videos will come on react native, stay tuned 💯
@zainali-yi7ww
@zainali-yi7ww Жыл бұрын
thanks a lot, for making it look this much easy 💯
@SaadCodify
@SaadCodify Жыл бұрын
thank you for the feedback 💯
@TalJa00
@TalJa00 6 ай бұрын
I feel so confused because I always face with the same problems after installing npm library Error: react-native-permissions: NativeModule.RNPermissions is null. I am trying to fix it with all suggestions that I found but it is still not working (I have never faced with these things while working with Flutter), can someone help me to deal with it.
@visionm.ph1
@visionm.ph1 5 ай бұрын
Facing the same Error :/
@vijayreddy6351
@vijayreddy6351 4 ай бұрын
1.pod install 2.clean and rebuild the app 3.npx react-native-clean-project or else do just delete node_modules folder, yarn.lock file, and add this code to package.json "resolutions": { "react-native-permissions": "^3.8.0" }, "overrides": { "react-native-qrcode-scanner": { "react-native-permissions": "^3.8.0" } },
@timtom3403
@timtom3403 Жыл бұрын
hi can you suggest how we can scan from a gallery image using this library ,thanks
@SaadCodify
@SaadCodify Жыл бұрын
for scanning a image from gallery you would need to install a additional library "npm install react-native-image-picker", set a state and create a function in which set the image Uri from gallery to that state you created than, use the prop of QrCodeScanner "ImageData" and pass that state. in "onRead" prop add a new state which displays the data of the image. I hope this will help you in scanning a picture from the gallery.
@timtom3403
@timtom3403 Жыл бұрын
@@SaadCodify in the docs i did not find a prop named ImageData
@SaadCodify
@SaadCodify Жыл бұрын
so sorry this prop was removed in the updates you can use rn-qr-generator to scan a image from galley www.npmjs.com/package/rn-qr-generator prop : fileName : Name of the image file to store in FileSystem.
@timtom3403
@timtom3403 Жыл бұрын
@@SaadCodify i tiried this and it worked thanks
@SaadCodify
@SaadCodify Жыл бұрын
Awesome! I'm glad to hear that it worked for you! Thank you for your feedbacks!
@pritigurav3654
@pritigurav3654 Жыл бұрын
what styles should i apply to get Camera in fullscreen. plz guide
@SaadCodify
@SaadCodify Жыл бұрын
import { StatusBar } from 'react-native'; return ( ) hide status bar, give a height of 100% at the cameraStyle and add other props that you need in QRCodeScanner i hope this would help you 💯
@usmansiddiqui3026
@usmansiddiqui3026 Жыл бұрын
That's really helpful , keep it up
@SaadCodify
@SaadCodify Жыл бұрын
thank you ♥️
@Hardy-zf8em
@Hardy-zf8em Жыл бұрын
good job man keep it up
@SaadCodify
@SaadCodify Жыл бұрын
thank you 💯
@justelaima2896
@justelaima2896 9 ай бұрын
can u provide the source code please?
@DevendraYadav-o3d
@DevendraYadav-o3d 11 ай бұрын
don't proper scan this library please tell me which library fast scan any angle because this library very slow
@kibadev918
@kibadev918 Жыл бұрын
Thanks a lot. great content
@SaadCodify
@SaadCodify Жыл бұрын
thank you 💯
@caiomendeslima5541
@caiomendeslima5541 9 ай бұрын
Thank you very much!
@rakhikumari9717
@rakhikumari9717 Жыл бұрын
Great work 👏 thank u so much 😊
@SaadCodify
@SaadCodify Жыл бұрын
thank you for the feedback 💯
@shahzaibali3065
@shahzaibali3065 2 ай бұрын
good job
How to build a QR Code Scanner with Expo ( React Native )
13:28
Dan's React Native Lab
Рет қаралды 14 М.
State Managers Are Making Your Code Worse In React
13:33
Web Dev Simplified
Рет қаралды 210 М.
Try this prank with your friends 😂 @karina-kola
00:18
Andrey Grechka
Рет қаралды 9 МЛН
coco在求救? #小丑 #天使 #shorts
00:29
好人小丑
Рет қаралды 120 МЛН
The Best Band 😅 #toshleh #viralshort
00:11
Toshleh
Рет қаралды 22 МЛН
React Native just dropped a MASSIVE update
15:06
Mehul - Codedamn
Рет қаралды 72 М.
⚡ MySecondApp -  React Native with Expo (P8) - Add Animated QR Code
4:39
QR Code Reader / Scanner in React (Html5-QRCode.js)
9:23
OpenJavaScript
Рет қаралды 48 М.
LlamaOCR - Building your Own Private OCR System
17:06
Sam Witteveen
Рет қаралды 41 М.
5 React Native Tips to WOW Your Users
16:36
Simon Grimm
Рет қаралды 36 М.
QR & Barcode Scanner App Tutorial in React Native
11:28
Indently
Рет қаралды 79 М.
Building a QR Code Scanner App with React Native
8:28
MultiMagix
Рет қаралды 4,8 М.