I’m sorry but the Teacher you follow plays a major role into wether you fall in love or dislike programming. And my dude Brad nails the inspiration everytime!
Thanks for this. I've been an iOS and Android developer for 10+ years and just heard of React Native last week. It's awesome. I can see how it would have saved a lot of time.
Quick fix for the alert at the end of the video on **Android** you need to wrap the { text: 'Ok'} in an array so: [{ text: 'Ok'} ] Thanks for the awesome tutorial Brad, big fan!!
@kyle Griffin. Believe the guy who actually contributes with something constructive and productive, instead of a self-proclaimed ex-facebook, ex-google employee, and divorced who only brags of how you will never become like him, and is butthurt because he got fired from facebook.
@@griffin955 yea, give me a single video where the self proclaimed tech lead guy actually built a product live on youtube. No, you won't find one. On every video you will find ex-google, ex-fb tech lead thumbnail doing this doing that. They are basically clickbait thumbnails. whereas @Traversy Media or brad keeps helping people by giving some valuable content instead of crap opinions which tech lead guy keeps bragging now and then.Hope this will help you to get to the conclusion. Now, you decide who to believe!
To all of you who replied, I was joking. Of course I'm not going to actually split hairs about youtube content creators when all of this content is free. Both channels are good to subscribe to and you don't need to choose. So you can sit down now.
@@griffin955 I know you were joking, but I would suggest people not 'believe' anyone and just looking into it yourself and see if you like it. See what you can build. Look at jobs around your area, etc. I am here to teach the stuff, not to tell people to use or not to use anything. Anyone should know that different people have different experiences with everything. One person hates PHP with a passion, while another builds a successful business/product with it. You can not go by another persons experience.
traversy media is the only person on youtube that explains stuff in plain English - no jargon. He also explains everything before diving into code. by far the best coding channel.
Great video, as always, from Mr. Traversy. Btw, if you are in a rush because you have a coding interview in 1hr, then jump forward to 15:05 where Brad starts from scratch, watch from there, then ace your coding interview.
Your crashcourses are one of the best things on RUclips. Thank you. Just go ahead. They are short, but enough. Instead of spending a week or two to explore one technology, I spend a few hours of your crashcourses and explore all similar technologies and choose what fits best for my needs.
A quick tip for anyone who's trying this on Android: the alert function must have an array of buttons on Android due to default behaviors. Therefore the code Brad wrote wouldn't work on Android unless you make a slight change: Alert.alert('Error', 'Please enter an item', [{text: 'OK'}]); Hope this helps :)
Great video! Just an observation for those who are having problem with Alert, it needs to be an array at the third param, and yes, it works with emotions! 😁 Alert.alert('No item 😕', 'Please enter an item.', [{text: 'Ok'}]);
I have been following ur channel, and the best thing about brad is that he directly comes to the point with easy explanations. Thanks for providing the code for the application. Keep the good work on !!
For Windows users do this before anything: 1.- make sure you have the JAVA_HOME variable declared in your user variables and inside your Path variable C:\Program Files\Java\jre1.8.0_251 (i recommend use this version of jre and download the SE java 8 version; if youre struggling with your tools.jar just copy it from the jdk/lib directory to jre/lib, that solves the problem. 2. make sure you have your ANDROID_HOME set in your systems variables as C:\Users\userName\AppData\Local\Android\Sdk 3. make sure your your %ANDROID_HOME%\platform-tools, %ANDROID_HOME%\tools and %ANDROID_HOME%\tools\bin are declared inside your user varibles Thats it, if you are facing any problem dont doubt and post a comment, happy code ;)
Nice! Thanks for the great tutorial. If anyone is looking for some ideas to expand on upon this for learning here are a few ideas: -Clear the add item input after a user adds an item -Save the list locally to a device to allow a user to edit and save the list on later uses -Create a way for users to add a second list (or more), switch between lists, edit and save them. Thanks again for the react native tutorial
Thank you, man. I used to be a lazy-ass guy, who just copies codes from youtube, but thanks to you, I am a middle React Native developer now. Thank you so much.
Thanks a bunch bro. I recently completed react js and wanted to start react native and create apps. You just took my fear away and gave me so much confidence. It's a lot like react js. So simple. Thank you sir ❤️
Hello Brad. I gotta appreciate your timing to post those videos. I recently got a new job like a week ago and it not only involves React but React Native too. I started diving into it and then comes this video 😃. Thanks
I am mesmerized how fast his machine is. My machine even barely able to run the the bundler, Lol even with my phone as AVD.. may ram is just a single gulped.
Thank you so much. Amazing tutorial. I have react experience and wanted to get some quick introduction to react native and your tutorial is amazing as always. ❤️
On 50:10 in my case I have error. Instead of {text: 'Ok'} need write [{text: 'Ok'}] in Alert.alert('Error', 'Please enter an item', [{text: 'Ok'}]); And better check if (!text.trim())
Thanks finally it worked! Had to do some extra work with environment setup and open Android project folder with Android Studio to get local.properties generated.
Hey, would you mind explaining how you got it to work? I've followed some of the guides I've found online for this issue, but was unable to get it working :C
I remember watching some of your videos 3+ years ago to help code something for uni, and now I'm back learning about react. Just for fun though, I'm a Mainframe Sysprog now 😅
If anyone here using AMD Ryzen processor on Windows, you don't need Intel HAXM. You will need to enable 'virtualization' from your BIOS settings (it will most likely be under CPU features and it is called 'SVM mode' on most motherboard BIOSes. You just have to enable it if its disabled and save and reboot) and you will need to enable 'Hypervisor' feature (press Windows button -> type 'turn windows features on or off' -> Check 'Windows Hypervisor Platform') wait for the process to complete and reboot.
hey brad, maybe very specific request but asking won't hurt anyway: it would be great if you make a full-stack flutter or react native course with complete backend with authorization, photo uploading, state management etc ( can be in firebase even). like a shopping list app or a simple social media app. i would happily pay for such course of yours. i know there're already courses like that out there but your teaching methods somehow work for me. thanks for considering.
That didn’t work for me, but I’ve copied and pasted a uuidv4 function from this SO question: stackoverflow.com/questions/105034/create-guid-uuid-in-javascript
No joke, I decided to build an application with a friend using React Native and the first video was of the Techguy saying it was bad, a few videos down the list and I see Brad uploaded this piece of a gem, immediately disregarded his opinion lmao
Thank You for React Native Crash Course 2020... You have done great effort for beginners to understand fundamentals. I liked it very much and the presentation skill is the most important part of this tutorial.. Thanks once again ...
Thanks for sharing, was just watching the crash course from 2 years ago, and when it was done this came up, posted about 2 hours ago. What a coincidence
best thing about expo is that to build .apk files you don't need android studio on your PC so even low end computers like 4gb ram can build android apps and publish it just like developing a react app in the web
Thanks, this really helped me. 1. Also, uuidv4 not working and showing errors while importing. 2. Inside Alert, it should be [{text: 'Ok'}] otherwise showing error.
To load font from react-native-vectors-icons, you need to do the following: 1. import Icon from 'react-native-vector-icons/FontAwesome'; 2. Icon.loadFont()
Thank you, excellent video. As a beginner, this is exactly what i needed. I learned a lot. So we can pass data through the components without Redux (which is very hard to master).You explain very well for people who start React Native. Unfortunatelay it's the only video about RN.
Great upload! I’m brushing back up on my react because I’m looking to build an hello world application and this tutorial is great. I’ve subscribed! Great work!
If you are getting an error while using Alert, wrap the third argument (the object) in an array: Alert.alert("Error", "Please enter an item", [{ text: "Ok" }]);
Please do a react native full course (a single project course like u did for node.js - Devcamper project). Because most of courses gives good preview video but when it comes to the actual course they miss important stuff, It's not like I don't like those courses or I didn't learn anything, those are good courses, but those courses missing important topics.
I'm having noting but issues trying to get this set up. Windows is making this 20x more difficult than it has to be. I just want to start building an app but this android studio shit is driving me insane. I've tried literally everything and the app just doesn't work. I've tried running it with a connected device, through android studio, through vs code and nothing gets this app to build. Failed to install app?? I'm so confused and beyond frustrated with the amount of bloat and setup this is requiring
Techlead: Why react native is garbage A few hours later... Traversy Media: ok Edit: No hate here just showing the coincidence that both video was uploaded on the same day. In fact I appreciate this react native video as I think it is a good technology to use. Sure there may be some cons like what techlead said but all technology have its pros and cons. I feel that saying native is garbage is wrong and maybe he can phrase it in a better way. :)
Brad, please make React Native course on udemy. Sure there are already others. But no udemy course could deliver the quality of teaching you did. Looking forward to it
Could make a video about how you make your videos and the way research and learn all this great stuff? It’s overwhelming how many stacks you know and teach! Love your content btw!
If you're having trouble compiling the repo on Mac for iOS then run this command from the root of the project folder: cd ios && pod install && cd .. Edit: You might also need to unlink native dependencies depending on your version of React Native CLI or if using npx as in my case. Compile and emulate will fail without unlinking from the root of the repo: react-native unlink react-native-vector-icons
If anyone getting error on adding alert and uuid like mentioned in video , try this Alert error: import {Alert} from react-native; Alert.alert('Error', 'Empty item', [{text: 'Ok'}]); uuid error: import {uuid} from uuidv4; {id: uuid(), text: 'your text'} It's worked for me, i was testing the app on my android device.
when i try to build the app on ios i get an error that says "IPHONEOS_DEPLOYMENT_TARGET is set to 8.0, but the range of supported deployment targets versions is 9.0 to 14.4.99" how can i resolve this, please
I’m sorry but the Teacher you follow plays a major role into wether you fall in love or dislike programming. And my dude Brad nails the inspiration everytime!
why are you sorry?
Just got my second job as front-end dev. Remember watching first tuts about media queries. Everything from basic stuff I know from here. Awesome work!
when u understand it perfectly, u will explain it in really simple way that everyone can understand,
this is it,
really love this one,
❤❤❤
Thanks for this. I've been an iOS and Android developer for 10+ years and just heard of React Native last week. It's awesome.
I can see how it would have saved a lot of time.
if ur uuid is giving an error do this:
import { v4 as uuidv4 } from 'uuid';
{id: uuidv4(), text: "Milk"},...
import { v4 as uuidv4 } from 'uuid';
{id: uuidv4(), text: "Milk"},...
second line
{id: uuid(), text: "Milk"},... worked this way
Thank you Very Much!
Thanks for informing
What about Header issue? imgur.com/a/bKWqE3q
It works. Thank you so much! You saved my day
I like before watching , that's Traversy media dude 💁🏻♂️
I appreciate that. Hopefully you never regret it :)
Same here
Same same, ahahah
ikr, saving front end devs for years
Same here
Quick fix for the alert at the end of the video on **Android** you need to wrap the { text: 'Ok'} in an array so:
[{ text: 'Ok'} ]
Thanks for the awesome tutorial Brad, big fan!!
I had the same issue
Tech Lead: React Native is Garbage.
Brad Traversy: Hold My Beer!(Uploads a crash course of RN).
I don't know who to believe! /s
@kyle Griffin. Believe the guy who actually contributes with something constructive and productive, instead of a self-proclaimed ex-facebook, ex-google employee, and divorced who only brags of how you will never become like him, and is butthurt because he got fired from facebook.
@@griffin955 yea, give me a single video where the self proclaimed tech lead guy actually built a product live on youtube. No, you won't find one. On every video you will find ex-google, ex-fb tech lead thumbnail doing this doing that. They are basically clickbait thumbnails. whereas @Traversy Media or brad keeps helping people by giving some valuable content instead of crap opinions which tech lead guy keeps bragging now and then.Hope this will help you to get to the conclusion. Now, you decide who to believe!
To all of you who replied, I was joking. Of course I'm not going to actually split hairs about youtube content creators when all of this content is free. Both channels are good to subscribe to and you don't need to choose. So you can sit down now.
@@griffin955 I know you were joking, but I would suggest people not 'believe' anyone and just looking into it yourself and see if you like it. See what you can build. Look at jobs around your area, etc. I am here to teach the stuff, not to tell people to use or not to use anything. Anyone should know that different people have different experiences with everything. One person hates PHP with a passion, while another builds a successful business/product with it. You can not go by another persons experience.
I love your video tutorials so much! I like how you cover the core functionality and build a simple clean example of how this tool works.
traversy media is the only person on youtube that explains stuff in plain English - no jargon. He also explains everything before diving into code. by far the best coding channel.
Great video, as always, from Mr. Traversy.
Btw, if you are in a rush because you have a coding interview in 1hr, then jump forward to 15:05 where Brad starts from scratch, watch from there, then ace your coding interview.
Whenever i need to search for frontend the only thing come in my mind first Traversy 🔥🔥
Your crashcourses are one of the best things on RUclips. Thank you. Just go ahead.
They are short, but enough. Instead of spending a week or two to explore one technology, I spend a few hours of your crashcourses and explore all similar technologies and choose what fits best for my needs.
A quick tip for anyone who's trying this on Android: the alert function must have an array of buttons on Android due to default behaviors. Therefore the code Brad wrote wouldn't work on Android unless you make a slight change: Alert.alert('Error', 'Please enter an item', [{text: 'OK'}]);
Hope this helps :)
thanks,it works
I also have another problem with: import Icon from 'react-native-vector-icons/dist/FontAwesome';
icons not showing
@@himyjan Did it throw an error?
For those who cannot see the text Shopping List displayed in the header. Remove height property from the header. It worked for me.
Great video! Just an observation for those who are having problem with Alert, it needs to be an array at the third param, and yes, it works with emotions! 😁
Alert.alert('No item 😕', 'Please enter an item.', [{text: 'Ok'}]);
OMG THANK YOU!!! Really helping people like you,
Hope you are well during this pandemic Bro.
Thanks Juliano. I was wandering what i was doing wrong
I have been following ur channel, and the best thing about brad is that he directly comes to the point with easy explanations. Thanks for providing the code for the application. Keep the good work on !!
For Windows users do this before anything:
1.- make sure you have the JAVA_HOME variable declared in your user variables and inside your Path variable C:\Program Files\Java\jre1.8.0_251 (i recommend use this version of jre and download the SE java 8 version; if youre struggling with your tools.jar just copy it from the jdk/lib directory to jre/lib, that solves the problem.
2. make sure you have your ANDROID_HOME set in your systems variables as C:\Users\userName\AppData\Local\Android\Sdk
3. make sure your your %ANDROID_HOME%\platform-tools, %ANDROID_HOME%\tools and %ANDROID_HOME%\tools\bin are declared inside your user varibles
Thats it, if you are facing any problem dont doubt and post a comment, happy code ;)
Thank you so much! I have been going at this for hours.
Make a Udemy Course!
There's huge demand and the last good course on React Native was published in like 2017!!!
Nice! Thanks for the great tutorial.
If anyone is looking for some ideas to expand on upon this for learning here are a few ideas:
-Clear the add item input after a user adds an item
-Save the list locally to a device to allow a user to edit and save the list on later uses
-Create a way for users to add a second list (or more), switch between lists, edit and save them.
Thanks again for the react native tutorial
Thank you, man. I used to be a lazy-ass guy, who just copies codes from youtube, but thanks to you, I am a middle React Native developer now. Thank you so much.
FIXING ALERT AND UUID ERRORS:-
1) UUID Error: Thanks to Abhi
- npm install uuid-random
- import uuid from 'uuid-random'
2) ALERT ERROR 'Buttons.slice()' FOR ANDROID: Thanks to Juliano Ventola
- Alert.alert('No item 😕', 'Please enter an item.', [{text: 'Ok'}]);
Thank you!
If there's one person that can explain the web , that's you buddy. RESPECT!
Thanks a bunch bro.
I recently completed react js and wanted to start react native and create apps.
You just took my fear away and gave me so much confidence.
It's a lot like react js.
So simple.
Thank you sir ❤️
A Udemy react native project course would be appreciated !!.
You're one of the few tutorials that use react-native-cli (instead of Expo) which was what I was looking for!
Me today : I am gonna learn react native to make apps.
Brad a few minutes later : *submits a react native crash course*
Hello Brad.
I gotta appreciate your timing to post those videos.
I recently got a new job like a week ago and it not only involves React but React Native too. I started diving into it and then comes this video 😃. Thanks
This is an amazing video for beginners to get to know React Native. Thank you for your great video!
I am mesmerized how fast his machine is. My machine even barely able to run the the bundler, Lol even with my phone as AVD.. may ram is just a single gulped.
If you're into react native youl love this channel called React UI Kit , it's a gold mine.
Thank you so much. Amazing tutorial. I have react experience and wanted to get some quick introduction to react native and your tutorial is amazing as always. ❤️
You helped alot.....you make react native look so easy....
I now have the confidence to build a chat app. To test my skills
On 50:10 in my case I have error. Instead of {text: 'Ok'} need write [{text: 'Ok'}] in Alert.alert('Error', 'Please enter an item', [{text: 'Ok'}]);
And better check if (!text.trim())
Thanks finally it worked! Had to do some extra work with environment setup and open Android project folder with Android Studio to get local.properties generated.
Hey, would you mind explaining how you got it to work? I've followed some of the guides I've found online for this issue, but was unable to get it working :C
I remember watching some of your videos 3+ years ago to help code something for uni, and now I'm back learning about react. Just for fun though, I'm a Mainframe Sysprog now 😅
damn this was really thorough, what an amazing crash course, thank you very much for putting in the time and effort to create this!
Thanks a lot, this video kick me start my app development. By the way I am full stack developer.
If anyone here using AMD Ryzen processor on Windows, you don't need Intel HAXM. You will need to enable 'virtualization' from your BIOS settings (it will most likely be under CPU features and it is called 'SVM mode' on most motherboard BIOSes. You just have to enable it if its disabled and save and reboot) and you will need to enable 'Hypervisor' feature (press Windows button -> type 'turn windows features on or off' -> Check 'Windows Hypervisor Platform') wait for the process to complete and reboot.
hey brad, maybe very specific request but asking won't hurt anyway: it would be great if you make a full-stack flutter or react native course with complete backend with authorization, photo uploading, state management etc ( can be in firebase even). like a shopping list app or a simple social media app. i would happily pay for such course of yours. i know there're already courses like that out there but your teaching methods somehow work for me. thanks for considering.
+1 for this and flutter + CI/CD methods
Oh Brad, is there anything you can't do? Anything coding that I've needed.. you've got it! Thank you so much!
To resolve uuid error.
npm install uuid-random
instead.
And import it like
uuid from 'uuid-random'
That didn’t work for me, but I’ve copied and pasted a uuidv4 function from this SO question: stackoverflow.com/questions/105034/create-guid-uuid-in-javascript
did not work for me...
It worked for me, Thank you @Abhi
import uuid from 'uuid-random' //please check this line for those who unable to resolve the issue.
I've found a could-be solution here: github.com/react-native-community/react-native-webview/issues/1312. Hope this helps a bit.
Worked for me, thanks a lot!
Traversy Media just made mobile app dev so easy!... thanks Brad as always!
If you are not interested in the setup, coding starts at 15:05
No joke, I decided to build an application with a friend using React Native and the first video was of the Techguy saying it was bad, a few videos down the list and I see Brad uploaded this piece of a gem, immediately disregarded his opinion lmao
any chance of a run through of setting up continous integration & deployment with bitbucket or jenkins..???
im not sure but i think con int is offered for react by bitbucket
Thank You for React Native Crash Course 2020... You have done great effort for beginners to understand fundamentals. I liked it very much and the presentation skill is the most important part of this tutorial.. Thanks once again ...
Beautifully explained. For the first time in some mand days, I felt like Yes React Native is not that difficult what I use to feel like ;)
if you have an error when add alert for empty item, try to change as follows : Alert.alert('error', 'please enter the item', [{text: 'ok'}]);
Thanks for sharing, was just watching the crash course from 2 years ago, and when it was done this came up, posted about 2 hours ago. What a coincidence
Perfect timing, I decided to learn React, RN, and Proton last week
best thing about expo is that to build .apk files you don't need android studio on your PC so even low end computers like 4gb ram can build android apps and publish it just like developing a react app in the web
This crash course is very comperhensive as always! Thank you, Brad!
To people who get error when pressing a button at 50:14 - surround {text: 'Ok'} with square brackets to make it [{text: 'Ok'}].
Thanks :) You were first comment when I searched the comments for the solution xD
Although my fortune cookie said ' act, don't react', I am still going strong with Brad.
Would love to see a React Native Udemy course! Thank you for all that you do!
Exactly ❤️
I have been thinking whether to learn React Native or not. But now that Brad has a tutorial, I have no excuse.
Thank you much, it's hard to teach something as complicated as React Native, you made it easier and simple.
Been learning react for web, wasn’t sure if to use react native, now I know i do, great video
Thanks, this really helped me.
1. Also, uuidv4 not working and showing errors while importing.
2. Inside Alert, it should be [{text: 'Ok'}] otherwise showing error.
i had this problem also... fix:
npm install react-native-uuid.
import uuid from 'react-native-uuid';
use uuid.v4()
worked for me 🤙
@@scubalukemaui1218Almost one year down the line, your tip save me after many hours of trying to solve this issue. Many thanks.
To load font from react-native-vectors-icons, you need to do the following:
1. import Icon from 'react-native-vector-icons/FontAwesome';
2. Icon.loadFont()
I was able to do it without loadFont, as of April 5th 2020
Thanks man :-)
Thank you!. Please also create a video about your recording environment, the setup and how you manage these things. Thanks again.
Thank you, excellent video. As a beginner, this is exactly what i needed. I learned a lot. So we can pass data through the components without Redux (which is very hard to master).You explain very well for people who start React Native. Unfortunatelay it's the only video about RN.
Brad, you are awesome, i really have no idea how so many knowledge can storage in your head, thanks for your hard work:)
it would be great sir if you do have an updated verions of this tutorial or maybe a course at udemy that would be greate too!
Would love a full Udemy course on React Native!
Great upload! I’m brushing back up on my react because I’m looking to build an hello world application and this tutorial is great. I’ve subscribed! Great work!
TECHLEAD : Why React Native is garbage ?
Traversy Media : React Native tutorial 2020 !
watched it in the same order xD
same xD
Google seem to place this video in a que after that
Block that techlead guy about 4months ago
Tbh react native is really trash
In latest version of react native you don't need to link the libraries they will be autolinked.
I cried when this video ended
Coz it was too good
Would like to see more react native content on your channel
I was on your channel just yesterday hoping for an updated React Native course. And now this! Thank you
Perfect and east to follow, but you missed that part on how to clear the TextInput field on successful addition
If you are getting an error while using Alert, wrap the third argument (the object) in an array:
Alert.alert("Error", "Please enter an item", [{ text: "Ok" }]);
So helpful, thank you very much
Please do a react native full course (a single project course like u did for node.js - Devcamper project). Because most of courses gives good preview video but when it comes to the actual course they miss important stuff, It's not like I don't like those courses or I didn't learn anything, those are good courses, but those courses missing important topics.
I'm having noting but issues trying to get this set up. Windows is making this 20x more difficult than it has to be. I just want to start building an app but this android studio shit is driving me insane. I've tried literally everything and the app just doesn't work. I've tried running it with a connected device, through android studio, through vs code and nothing gets this app to build. Failed to install app?? I'm so confused and beyond frustrated with the amount of bloat and setup this is requiring
49:00 - I think you have to wrap the error message in array for it to work now o-o
Thanks.
Udemy React Native projects soon? ❤
Maybe :) but it wouldn't be for a little while
@@TraversyMedia Looking forward to the Udemy React Native training course based on RN CLI.
Flutter 😘
@Traversy Media Dart Please!
@@TraversyMedia Do you have any now?? Cause I wanna learn it and when I learn something I wanna learn from the best 😊
Great introduction to R N. Thank you
Still by far the best coding teacher on the web, much love for my guy @Brad
Techlead: Why react native is garbage
A few hours later...
Traversy Media: ok
Edit: No hate here just showing the coincidence that both video was uploaded on the same day.
In fact I appreciate this react native video as I think it is a good technology to use. Sure there may be some cons like what techlead said but all technology have its pros and cons. I feel that saying native is garbage is wrong and maybe he can phrase it in a better way. :)
nice :))
I can't stand videos like that. It is one persons opinion that probably has never even used the thing. It just brings views
This is negative or positive, I didn't understand what you were saying
Idk but I think Techlead right now is kinda lost in his videos
UI Developer me too
Wow, This is recorded in 2020 and things have insanely changed in react native in just few months
Dam, would it be a bad idea to follow this then?
@@TheNeonbuffalo no, you will need docs for some parts but it's fine
@@Amir-bz1fk thanks for reply
great crash course, I'm hoping for React Native and Vue JS Udemy course
Will you do a crash course on latest version of react native
Great video! I've used React before and this is a perfect starter code-along for getting going with React Native. Thanks!
Although I've really struggled to incorporate Expo after creating this react-native app
i always read peoples comments saying they were just thinking bout learning something and brad uploads..haha well today is my turn
Brad, please make React Native course on udemy. Sure there are already others. But no udemy course could deliver the quality of teaching you did. Looking forward to it
ditto!!
Wow, Thank so much Mr Brad. You did this video exactly when I needed it.. you're my favorite
Could make a video about how you make your videos and the way research and learn all this great stuff? It’s overwhelming how many stacks you know and teach!
Love your content btw!
lol so you make beats and code...
Forest River ... so?
Simple and smart basic react native tutorial.
Dude I've been praying for a react native crash course form you. STOKED
Oh this is everything I need to get started, thanks.
If you're having trouble compiling the repo on Mac for iOS then run this command from the root of the project folder:
cd ios && pod install && cd ..
Edit: You might also need to unlink native dependencies depending on your version of React Native CLI or if using npx as in my case. Compile and emulate will fail without unlinking from the root of the repo: react-native unlink react-native-vector-icons
Hope you come up with an updated version with backend database. Thank you and more power to your channel!
Please do a Flutter crash course. It'll be very appreciated by us beginners and will be easier for us to decide between React Native and Flutter
If anyone getting error on adding alert and uuid like mentioned in video , try this
Alert error:
import {Alert} from react-native;
Alert.alert('Error', 'Empty item', [{text: 'Ok'}]);
uuid error:
import {uuid} from uuidv4;
{id: uuid(), text: 'your text'}
It's worked for me, i was testing the app on my android device.
i just love the way he teaches thank you so much.
when i try to build the app on ios i get an error that says "IPHONEOS_DEPLOYMENT_TARGET is set to 8.0, but the range of supported deployment targets versions is 9.0 to 14.4.99" how can i resolve this, please
Thank you for your Effort in Trying to Educate us Brad!!
I am new here. I cannot run the emulator at 12:21. The error message is "Failed to launch Emulator"... What's wrong?