Тёмный

React Native Course for Beginners in 2024 | Build a Full Stack React Native App 

JavaScript Mastery
Подписаться 955 тыс.
Просмотров 778 тыс.
50% 1

Опубликовано:

 

26 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 1,9 тыс.   
@srvicytube
@srvicytube 4 месяца назад
If you're having trouble with the expo initial configuration run this command: npx create-expo-app@latest [your-app-name] --template blank@latest this will start your project exactly like in this video
@mrsxber1916
@mrsxber1916 4 месяца назад
dude i'm o grateful, thank you so much. I was literally losing my head cuz the tutorial looked so different from what I had on my screen
@AnkitSingh-ff6ew
@AnkitSingh-ff6ew 4 месяца назад
1:45:28 i'm getting this error [AppwriteException: Network request failed] when i click on sign up button i'm getting this error, i have created ios app but using android emulator
@mr.protienewing8343
@mr.protienewing8343 4 месяца назад
Iam having a doubtt
@sxve-x
@sxve-x 4 месяца назад
thanks man
@Mj-ct8yo
@Mj-ct8yo 4 месяца назад
🤝 good man
@OBGCORP
@OBGCORP 5 месяцев назад
i had a project in my mind so wanted to learn react native but had no luck with other tutorials online because they were either older videos, instructor was not clear or maybe both. then i saw your older video and loved your teaching but was losing hope since that video was also a bit older and i was struggling to keep up with what you were teaching. i was ready to give up but wanted to give it a shot for the last time and searched youtube for react native full course. and BOOM you have had uploaded this tutorial just 6 hours ago! oh boy that was a signal for me to not give up and thanks to you i have come a long way with this video man... thanks a lot & lots of love.
@javascriptmastery
@javascriptmastery 5 месяцев назад
Enjoy it, i wish you all the best!
@sajalnamdeo4270
@sajalnamdeo4270 3 месяца назад
has he taught react native from scratch ? i am asking because i wanna start app dev with react native, but have no knowledge about react natice. can i follow this course
@OBGCORP
@OBGCORP 3 месяца назад
@@sajalnamdeo4270hi dude, i didnt know react native at all when i watched this. But this video helps a lot to start the journey. I recommend watching it and taking the syntax and basics, then start working on a project of your own and search for documentations when you need rather than always sticking to videos. Thats the best way to learn imo. I watched this video and and started working on my own project after i felt confident and looked up documentations when i needed. This way i was able to go from zero to publish an app to appstore in nearly 40 days!
@davidgr168
@davidgr168 3 месяца назад
​@@sajalnamdeo4270 Yes. If you have experience developing JS and React apps, you can follow this course. Using both expo docs and react native docs to understand in depth the nature of the libraries and components he uses. I think Adrian´s style is the best.
@2u841r
@2u841r 5 месяцев назад
15:58 npx expo install expo-router react-native-safe-area-context react-native-screens expo-linking expo-constants expo-status-bar
@white-ts5np
@white-ts5np 5 месяцев назад
thank you
@yogeshk7922
@yogeshk7922 4 месяца назад
thanks
@jonathanjoen6468
@jonathanjoen6468 4 месяца назад
ty!
@frogo6413
@frogo6413 3 месяца назад
👑
@BukkyOdunsi
@BukkyOdunsi 3 месяца назад
God bless you o
@abdullahan1928
@abdullahan1928 Месяц назад
If you are facing issue that says: "Property className does not exist on ......", then you can make a global.d.ts file or use the exisiting one named expo-env.d.ts and past the following line there: /// This will remove the error.
@ChristianJohnsonFP
@ChristianJohnsonFP Месяц назад
Thanks, was looking for a way to fix that error
@alicewyan
@alicewyan Месяц назад
Thank you!
@MKUMBRA
@MKUMBRA Месяц назад
This should be stickied; thank you man!!
@LamNgo-fg3xd
@LamNgo-fg3xd Месяц назад
Thank you for your useful sharing
@emekaprecious78
@emekaprecious78 15 дней назад
Thanks a lot, was having the same issue
@CTILET
@CTILET 5 месяцев назад
Best channel about fullstack in youtube!
@javascriptmastery
@javascriptmastery 5 месяцев назад
Thank you!
@jagdish1o1
@jagdish1o1 5 месяцев назад
Love from India 🇮🇳 I don't know the reactjs fully yet but the way you explain make it look so simple.
@javascriptmastery
@javascriptmastery 5 месяцев назад
Thank you!
@awildcatappears6804
@awildcatappears6804 4 месяца назад
bro just saved my university project here, me and my friend built a tracking app using your lesson and it works really well, thx!
@BriansRecaps
@BriansRecaps 5 месяцев назад
Its like you have answered my comment on the last video, i have been dying to learn React Native , and i couldnt find anyone on RU-vid who can explain the way you do . Big thanks for that bro 😎. We need more content like this from you
@javascriptmastery
@javascriptmastery 5 месяцев назад
Enjoy!!
@isolapelumi2048
@isolapelumi2048 5 месяцев назад
We need more react native video please
@MOARgaming
@MOARgaming 4 месяца назад
@ 1:54:35 if you have the error createEmailSession is not a function, switch to createEmailPasswordSession, it was changed from 1.4 to 1.5 of appwrite.
@tibooooyt
@tibooooyt 3 месяца назад
Thank you so much man you're a legend
@krish7576
@krish7576 3 месяца назад
Thank you very much finally
@amogelangmoatswi1918
@amogelangmoatswi1918 3 месяца назад
I am getting an error... It doesn't redirect me to the homepage if the user is already logged in?
@changed217
@changed217 2 месяца назад
@@amogelangmoatswi1918 did u find the fix?
@changed217
@changed217 2 месяца назад
@@amogelangmoatswi1918 Alright I ended up finding the fix, in the appwrite.js file export async function signIn(email, password){ try{ const session = await account.getSession('current'); if (session) { await account.deleteSession(session.$id); } return session; } catch(error) { throw new Error(error); } } write this as the signIn function instead
@steve_ade1407
@steve_ade1407 5 месяцев назад
Been waiting for this! 🤩 Thanks
@javascriptmastery
@javascriptmastery 5 месяцев назад
It's finally here!!! 🤩
@tuongnguyen590
@tuongnguyen590 4 месяца назад
If you get to the Home Page part (around 2:45:38) where the VideoCard component supposes to render thumbnail images but it doesn't. It's because the files the author provided had exceed the access bandwidth limit. You can upload your own videos and images to the same bucket created earlier in appwrite and update the video url as well as thumbnail url. Update: Looks like Adrian and team had updated the thumbnails/videos link
@АндрейПотемкин-ш6й
@АндрейПотемкин-ш6й 3 месяца назад
I can't search links for this thumbnail images and videos, can u told me where is it
@almighty9098
@almighty9098 3 месяца назад
I tried creating my own video and thumbnail but its not displaying the thumbnail, any solutions? thanks
@gankers6746
@gankers6746 Месяц назад
in his github github readme the demo data he provided can i add them in my bucket
@farihanishat9795
@farihanishat9795 29 дней назад
@@almighty9098 same here. Did you manage to solve it?
@yonathegod
@yonathegod 24 дня назад
I still can't load the thumbnail images even after using my own images. I have checked console.log and the data is being fetched correctly.
@monke3043
@monke3043 12 дней назад
Completed in 5 days 🤧
@jarndev
@jarndev 5 дней назад
This is the second time I watch this course, the way he gets excited whenever he completes a new feature really makes me enjoy the learning process. Thank you brother.
@braveitor
@braveitor 4 месяца назад
At least for me, the initial steps described in the video are done automatically while installing the libraries. I mean the app folder with the _layout.tsx, no app.js file, and so on. I suppose that's a modern version which takes care for those things for us. Great video. I've learnt a lot!
@tommyc4511
@tommyc4511 4 месяца назад
how did you get passed this step? Im stuck with all the tsx and cant follow along... my mobile app on expo gives me a complete different landing page
@pcodesdev
@pcodesdev 4 месяца назад
@@tommyc4511 I am as well stuck at the same point
@benjaminguerrieri5136
@benjaminguerrieri5136 4 месяца назад
​@@tommyc4511 clear all contents of the folder, create a new file of type .jsx:, and paste in the following code: import { StatusBar } from "expo-status-bar"; import { StyleSheet, Text, View } from "react-native"; export default function App() { return ( Hello ); } const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: '#fff', alignItems: 'center', justifyContent: 'center' }, });
@mcatq
@mcatq 2 месяца назад
as @lucaszanek6204 wrote solve the problem: 1. Create a folder myAppName 2. Move inside 3. npx create-expo-app --template blank ./ 4. npx expo install expo-router react-native-safe-area-context react-native-screens expo-linking expo-constants expo-status-bar 5. You now are on the 16:52
@DSAPlayback-jh4dq
@DSAPlayback-jh4dq 4 дня назад
@@pcodesdev read 1st comment...run that code
@antrasaraf1596
@antrasaraf1596 5 месяцев назад
hey @Adrian I'm watching your videos since 2022 thank you for making such great content and teaching the world coding in such a simple manner.
@javascriptmastery
@javascriptmastery 5 месяцев назад
Thank you so much!
@simeonmwangi4033
@simeonmwangi4033 5 месяцев назад
I have waited for this react-native update project. Much love from Kenya
@javascriptmastery
@javascriptmastery 5 месяцев назад
Hope you enjoyed it!
@Neil_09
@Neil_09 5 месяцев назад
Wakenya shida zenyu ni nini. Lazma mulete watu kwa vitu zenyu. Kurep nchi haikufanyi ujulikane. Toa ukoloni kwa hiyo akili yako ndogo.
@LeoMessiEnjoyer
@LeoMessiEnjoyer 5 месяцев назад
@@Neil_09 shush.
@iankabaka6529
@iankabaka6529 5 месяцев назад
@@Neil_09 we shida yako ni gani pia, with all the bad energy
@hk254lyt8
@hk254lyt8 5 месяцев назад
@@Neil_09sasa umesema nini hapo?
@lazyprog
@lazyprog 5 месяцев назад
You finally did it. You made a React Native course, a long waited one. Thank you adrian!
@javascriptmastery
@javascriptmastery 5 месяцев назад
Yess, finally!
@evakalogjera1683
@evakalogjera1683 2 месяца назад
this is the best tutorial ever. not only for react native. Everything is so well explain and the pace is perfect. I am new to react native and I understood it all and I passed 2/3 of the course now. thank you! p.s. just have a problem with playing videos because it just gives me gray screen and controls when i press play. edit: Sad sam tek skužila da si iz Hrvatske! :) hvala na ovom videu, nisam znala odkud krenuti s react nativeom.. Imaš stvarno dar za predavanje! :)
@keykeythrowaway4622
@keykeythrowaway4622 2 месяца назад
Having the same problem here
@evakalogjera1683
@evakalogjera1683 2 месяца назад
@@keykeythrowaway4622 for me it works with the video that i uploaded at the end of the course.
@tranequafauntleroy1427
@tranequafauntleroy1427 2 месяца назад
LITERALLY searched through all the comments to find this!! My videos aren't playing either. I can even see the urls when i console.log(item) and console.log(item.video) and still nothing plays. Let me know if you find solution. I will do the same.
@tranequafauntleroy1427
@tranequafauntleroy1427 2 месяца назад
@@keykeythrowaway4622 LITERALLY searched through all the comments to find this!! My videos aren't playing either. I can even see the urls when i console.log(item) and console.log(item.video) and still nothing plays. Let me know if you find solution. I will do the same.
@evakalogjera1683
@evakalogjera1683 2 месяца назад
@@tranequafauntleroy1427 videos that are from my phone are playing! I stopped searching why the others don't.
@GandahKelvin
@GandahKelvin 5 месяцев назад
Hi @Adrian and team, I'm from Ghana and I just want you guys to know that I got a job because of the videos you put out here. Allah bless you and your team and may you keep making a difference. Thank you!!!
@javascriptmastery
@javascriptmastery 5 месяцев назад
Thank you!
@ammynu
@ammynu 5 месяцев назад
How did you get a job? I want to get one too and have built projects
@Leetscode_here
@Leetscode_here 5 месяцев назад
I'm also from Ghana ,i just started the react js tutorials
@lonamdutyana3345
@lonamdutyana3345 5 месяцев назад
same here im from South Africa and this is absolutely life changing
@OldOneX
@OldOneX 4 месяца назад
ماشاء الله
@HafidLAADIMI-m2w
@HafidLAADIMI-m2w 19 дней назад
if u have a problem with expo application try to turn on the access point from your computer then connect your phone on it . This has solved the problem for me .
@tobbyland4438
@tobbyland4438 3 месяца назад
Pleasant voice, hardly find one in the IT RU-vid area anymore ❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️😍 😍😍😍 What I have to say is that the entry point setup described here no longer exists 2 months after the release of your video, because REACT NATIVE has already evolved and the process looks different. But all in all the best course! Thanks a lot. Best regards
@atulanand9292
@atulanand9292 2 месяца назад
What should be done instead now?
@krizh289
@krizh289 2 месяца назад
@@atulanand9292 its pretty simple but some of the steps he does in the video to setup the project are already setup for you
@account-vj2tx
@account-vj2tx 2 месяца назад
Thank you from the bottom of my heart, I watched the video and was able to create the application without any problems. Everything worked as expected. Thank you very much, you directed me towards a dream that I have been trying to learn for some time. Much gratitude for your life. Please bring a video on how to export to iOS and how to authenticate this app with Google on appwrite. I hope Appwrite encourages you even more to bring apps like these. I loved using Appwrite, I've already signed up for the plan and I want to improve the app and someday show you the results. Hugs from a friend! And when I get organized I will take your Nextjs course!
@letambossmanbarinua7980
@letambossmanbarinua7980 5 месяцев назад
Exactly what I've been looking for. Thanks for all you do.
@javascriptmastery
@javascriptmastery 5 месяцев назад
Our pleasure!
@brianjohnson4730
@brianjohnson4730 7 дней назад
this is probably the best tutorial i've watched on anything related to mobile development
@derekprieur5258
@derekprieur5258 5 месяцев назад
I'm currently making a mobile app version for my side project web app so this is perfect timing! Thanks team!!
@javascriptmastery
@javascriptmastery 5 месяцев назад
You got it, Derek! That's awesome!
@l0ot3r19
@l0ot3r19 5 месяцев назад
it's a shame that we can only put one thumb ;)
@richysel3258
@richysel3258 5 месяцев назад
Hi Adrian , just finished this tutorial and I must say thank you sooo much for everything. I cant wait for the deployment video. please do well to work on it . once again thank you soo much for this. You are amazing and I loved every bit of it. 👌👌👌👌🥂🥂
@itksports
@itksports 5 месяцев назад
how did your native wind work
@richysel3258
@richysel3258 5 месяцев назад
@@itksports just copy the configuration in the repo. For some reason the new install didn't work for me.
@richysel3258
@richysel3258 5 месяцев назад
@@itksports just use the configuration in the repo.
@sanjayagamamidi
@sanjayagamamidi Месяц назад
3:02:19 If your video doesn't play, it's most likely that your device can't read that video format, try any other video link in the appwrite or you can hardcode it in your code. Here's an example video link: www.w3schools.com/html/mov_bbb.mp4
@Sora-uu6el
@Sora-uu6el Месяц назад
Thank you so much 🙏
@ocean-donut
@ocean-donut 10 дней назад
Thank you this worked for my iphone :)
@jackfrost8969
@jackfrost8969 3 месяца назад
everything is different in just 2 months. Holy shit.
@shreejipaliwal1215
@shreejipaliwal1215 2 месяца назад
Why bro?
@jackfrost8969
@jackfrost8969 2 месяца назад
@@shreejipaliwal1215 coz this guy is a fraud.
@marvinotieno2194
@marvinotieno2194 Месяц назад
@@WellActualllyyy Mine actually works, except for the video player
@DevBigEazi
@DevBigEazi Месяц назад
​@marvinotieno2194 hi how can we connect. I was getting an error while testing the appwrite for the first time to create a user
@ziyinchen6827
@ziyinchen6827 Месяц назад
@@marvinotieno2194 oh! me too! I am desperate now because my video is not playing nor showing up. how to solve it! i am stuck at 3:00:00 for 2 days
@suzukikitamasi8333
@suzukikitamasi8333 4 месяца назад
That's amazing. Thanks you. Your English is wonderful I'm from Russia and I understand you! My English level is a2-b1. But your speech so clear and pleasant. Thanks for video)
@jmariwyatt
@jmariwyatt 3 месяца назад
For all of those who are having problems after doing the NativeWind. Be sure to restart your server, so control+c on mac. then start it again. The change in babel requires the restart to reflect the changes.
@tamannguyen2565
@tamannguyen2565 3 месяца назад
I appreciate your comments for future viewers
@tamannguyen2565
@tamannguyen2565 3 месяца назад
Hey, I did it. Thank you very much
@radmanaminzadeh7593
@radmanaminzadeh7593 Месяц назад
i have problem. the styles in the VideoCard component wont work for some reason. the styles on the View doesnt work
@vincentman6142
@vincentman6142 29 дней назад
very appreciate
@ryanhurst2448
@ryanhurst2448 2 месяца назад
For nativewind to work for me... tailwind.config.js content: [ "./components/**/*.{js,jsx,ts,tsx}", "./app/**/*.{js,jsx,ts,tsx}",], then ctrl+c in terminal to exit rerun ' npx expo start -c' then Press 'r' in terminal to reload
@Karmaa-jf4ut
@Karmaa-jf4ut Месяц назад
Same.
@TheMuhammedtaha1
@TheMuhammedtaha1 Месяц назад
fucking LEGEND
@kahchuanlau6086
@kahchuanlau6086 Месяц назад
thanks buddy
@shanesh777-91
@shanesh777-91 28 дней назад
THANK YOU! I was stuck on this for so long
@julietnelly2637
@julietnelly2637 17 дней назад
thanks. Works for me too
@supersnowva6717
@supersnowva6717 3 месяца назад
Amazing tutorial as always Adrian, would love to see the deployment of the apps to app stores or google play in the future. thank you so so much! You are a legend!
@olawunitemitope2738
@olawunitemitope2738 5 месяцев назад
Thank you very much I've been expecting course on react native since last year
@javascriptmastery
@javascriptmastery 5 месяцев назад
You are welcome!
@StevenCodeCraft
@StevenCodeCraft 4 месяца назад
You are incredible. I have an Expo React Native app, but it's not using the latest features and this has helped tremendously
@taylanacikgoz4152
@taylanacikgoz4152 4 месяца назад
For the error 'Creation of a session is prohibited when a session is active' I fixed the signIn function in the appwrite.js file as it below. Before creation of new session first delete current one; export const signIn = async (email, password) => { try { await account.deleteSession("current"); const session = await account.createEmailPasswordSession(email, password); return session; } catch (error) { throw new Error(error); } };
@Jokopie-wv3zp
@Jokopie-wv3zp 4 месяца назад
thanks bro
@clementebarros4097
@clementebarros4097 4 месяца назад
👌👌👌
@iBiiTEx
@iBiiTEx 4 месяца назад
this will encounter a permissions error where the const account will have guest permissions and can't perform the calls to appwrite. export const userSignIn = async (email, password) => { try { if (!account.getSession()){ const session = await account.createEmailPasswordSession(email, password) return session }else{ await account.deleteSession("current") const session = await account.createEmailPasswordSession(email, password) return session } } catch (error) { throw new Error(error) } } this fixed it for me
@dotDev-dD
@dotDev-dD 3 месяца назад
thanks a lot
@ac5402
@ac5402 3 месяца назад
@@iBiiTEx I got an error later on. commented out the if statement fixed the issue for me. // if (!account.getSession()){ // const session = await account.createEmailPasswordSession(email, password) // return session // }else{ await account.deleteSession("current"); const session = await account.createEmailPasswordSession(email, password) return session // }
@someoneyouknow2440
@someoneyouknow2440 5 месяцев назад
Thank you very much adrian this is what I've been waiting for, I've gotten a few job requests for mobile apps with react native but I've always declined cos I couldn't find a really good react native course. You really are the best.
@javascriptmastery
@javascriptmastery 5 месяцев назад
Great suggestion!
@2ru2pacFan
@2ru2pacFan 5 месяцев назад
😮😮😮 I love you Adrian! Thank you! ❤
@javascriptmastery
@javascriptmastery 5 месяцев назад
Thank you! ❤
@techlightdev
@techlightdev 5 месяцев назад
So amazing tutorial, I'm finished and I have learn about React Native so much. Thank you.
@javascriptmastery
@javascriptmastery 5 месяцев назад
Amazing work!!
@codingfriend111
@codingfriend111 5 месяцев назад
could you please hare your github link. i got an erron in last video uploading section
@naijadailyplus
@naijadailyplus 5 месяцев назад
This is what I'm looking for all my lifetime. Thank you, God bless you and your family.
@javascriptmastery
@javascriptmastery 5 месяцев назад
Same to you!
@lucidmach
@lucidmach 27 дней назад
prolly one of the best made videos (leave alone tutorials) I've seen in a while
@simonmaluleka
@simonmaluleka 5 месяцев назад
Loving the pace at which we are moving in this tutorial. Your teachig style is best and easy to follow
@IvoTsochev
@IvoTsochev 17 дней назад
Great video! Went all through it to the end and learned so much, thank you!
@nomodifyy
@nomodifyy 5 месяцев назад
Thank you for explaining everything in such an amazing way, The best Programming Channel on youtube! 👍👏
@javascriptmastery
@javascriptmastery 5 месяцев назад
You're very welcome!
@technishan7222
@technishan7222 5 месяцев назад
All of your React Native courses are always incredible. appreciate you man!
@javascriptmastery
@javascriptmastery 5 месяцев назад
My pleasure!
@tinchoeluru
@tinchoeluru Месяц назад
I love this, thank you for posting this tutorial. I can't play the videos due to Vimeo does not serve the MP4 but an integrated player in the video URLs
@singerardsin9624
@singerardsin9624 16 дней назад
Does anyone have a solution to this problem? Native controls try to start the video but the video will not load.
@elliotlassey3118
@elliotlassey3118 3 месяца назад
The video is absolutely perfect. I really enjoyed and followed it to the very end. But the problem I have with the video is that it gets hard to type along because the extension and code autocomplete or suggestions cover up the code so I really have to replay and strain my eyes to see the code being written
@joshuatolulope6368
@joshuatolulope6368 5 месяцев назад
Thank you Adrian…you’re the best
@javascriptmastery
@javascriptmastery 5 месяцев назад
Appreciate it!
@purpleman233
@purpleman233 10 дней назад
Thanks for the detailed and intuitive tutorial - I have learnt a lot about React Native from your video!
@absoftlab
@absoftlab 4 месяца назад
Everything was fine two days ago. Now native wind is not working. So I created a new app. Magic - everything is typescripted. Changing so fast makes it tough for newbies like us. A quick video update would be great for beginners like us. Thank You Very Much.
@tafadzwaaaliyahndoro338
@tafadzwaaaliyahndoro338 4 месяца назад
create the babel.config.js file manually, that's the one where you mention nativewind
@hrushikway
@hrushikway 5 месяцев назад
man, i was looking to learn RN and you put out a video. Today is a goooood day :)
@javascriptmastery
@javascriptmastery 5 месяцев назад
Hope you enjoyed it!
@ennygenius8823
@ennygenius8823 5 месяцев назад
Thank you very much Adrian! You are the best
@javascriptmastery
@javascriptmastery 5 месяцев назад
You are the best
@firebout7675
@firebout7675 5 месяцев назад
Finally completed this Awsome video and learnt a lot from it, really thank you sir, now going to watch your Next.js series 🔥🔥🔥🔥
@tranequafauntleroy1427
@tranequafauntleroy1427 2 месяца назад
Congrats on finishing!! Did you do anything special to get the videos to play on "home"? Whenever I hit "play" a grey screen pops up instead of the video playing. Do you have any insight or advice for overcoming this?
@BahaaAldein-o2i
@BahaaAldein-o2i 5 месяцев назад
You are absolutely amazing! ❤️❤️
@javascriptmastery
@javascriptmastery 5 месяцев назад
Thank u bro♥️
@ayanthaseneviratne8860
@ayanthaseneviratne8860 8 дней назад
Highly Recomended. I didn't have any experience in react native. But this video helped me a lot in developing my application. Thank you G !!
@Marc-fj3kd
@Marc-fj3kd 5 месяцев назад
Amazing video as always, thank you Adrian
@javascriptmastery
@javascriptmastery 5 месяцев назад
My pleasure!
@chanaka7518
@chanaka7518 Месяц назад
It took days to complete while learning. But worth it. You are doing amazing works here. Thank you Adrian.
@PatsFerrer
@PatsFerrer 5 месяцев назад
You are amazing.. thank you so much! Much 💛💚 from Brazil!
@javascriptmastery
@javascriptmastery 5 месяцев назад
Wow, thank you!
@zeinine
@zeinine 5 месяцев назад
Yes! This what i wanted thanks. Try giving other courses too. Your channel is literally the best when it comes to learning tech.
@javascriptmastery
@javascriptmastery 5 месяцев назад
Will do!
@soumadip_banerjee
@soumadip_banerjee 5 месяцев назад
Oh lawwrddd! Thank u Adrian ❤
@javascriptmastery
@javascriptmastery 5 месяцев назад
You're welcome 😊
@anonymous_anonymity
@anonymous_anonymity 29 дней назад
If you are looking for a feedback before starting: Great video. Exceptionally high quality editing+narration. I appreciate the effort. However, if one is looking for video to understand the concepts then this is not not the video. It emphasises more on design, that too without explanation. It basically demonstrates how easy it is to design a native app.
@pleasurevp5951
@pleasurevp5951 5 месяцев назад
Extremely waiting for this course
@javascriptmastery
@javascriptmastery 5 месяцев назад
It's finally here!
@riddhi5560
@riddhi5560 5 месяцев назад
As usual, this is an amazing tutorial Adrian! Just finished zoom clone and you dropped this banger! You are a great mentor!! One request! If you could let more web3 tutorials slide in, it would be great!! Looking forward for more such tutorials!❤
@javascriptmastery
@javascriptmastery 5 месяцев назад
Awesome, thank you!
@castellovisiedo
@castellovisiedo 5 месяцев назад
Literally yesterday I decided to build my first app with react and had no idea how to do it. Today I wake up with this. What else can I ask for?
@javascriptmastery
@javascriptmastery 5 месяцев назад
Enjoy it!
@_aNeaire
@_aNeaire 5 месяцев назад
Your video's are absolute wonderful man,your video in last 5 months ago about react and appwrite i did do your guide then make the app with my desire features, that video really engage me in this field THANK YOUUU 100X
@geoffphilippe1472
@geoffphilippe1472 4 месяца назад
I have to give up on this video. Looks like some good content, but I spend more time troubleshooting issues then learning the material.
@Jokopie-wv3zp
@Jokopie-wv3zp 4 месяца назад
u good now?
@martinfulop484
@martinfulop484 Месяц назад
Troubleshooting = this whole industry
@ofentsemassinga1952
@ofentsemassinga1952 9 дней назад
i feel your frustration problem is all these updates im in the same boat
@sethhendrikz6949
@sethhendrikz6949 7 дней назад
@@ofentsemassinga1952 i ran into a few of these issues myself, started this yesterday but havent come across many more issues. Which ones you facing? You solved any? Dont get disheartened, it is a lot to learn and a lot more to fix but it is certainly possible and the more you fail, the more you learn
@drugoviic
@drugoviic 4 месяца назад
I just finished the video and I think I've developed a passion for React Native. Thank you for the tutorial
@javascriptmastery
@javascriptmastery 4 месяца назад
That's amazing!
@LeraMulina
@LeraMulina 5 месяцев назад
You did not mention that for reflecting CustomButton and Loader you should create an index file in components folder. Without that file the app shows the syntax error
@8creators
@8creators 5 месяцев назад
@LeraMulina I was facing the same issue so I downloaded GitHub Repository to check I was missing or what the wrong with my code ;
@singerardsin9624
@singerardsin9624 18 дней назад
Thank you so much for your comment
@muhammadabduttawwab5241
@muhammadabduttawwab5241 Месяц назад
Thank you for your tutorial video, currently finished until last minute,
@aditya.khapre
@aditya.khapre Месяц назад
16:07 this guide does not exist in the Expo Docs. Am I missing something? Also there is no link in the description for this guide.
@sarimkhan9897
@sarimkhan9897 26 дней назад
same problem bro, please tell me if you found a solution
@ollietylerr
@ollietylerr 5 месяцев назад
Amazing tutorial so far. One thing to note, the thumbnail urls in the readme are conjugated so aren't valid links currently, so you have to use your own / different urls for the thumbnails.
@javascriptmastery
@javascriptmastery 5 месяцев назад
I'll fix it soon!
@yonathegod
@yonathegod 24 дня назад
Even after I used my own thumbnail links doesn't work for me when I tired to load it under latest videos. Any solution?
@mdom0277
@mdom0277 4 месяца назад
Friendly suggestion for future videos: When you're typing and all those things pop up over the screen (intellisense or something) it blocks out all the the text you had written. It causes me to have to let you finish with the whole section where you are no longer typing, pause the video, copy the big chunk down, then resume the video. If you turned that off for the tutorials, these videos would be 11/10 instead of 10/10.
@javascriptmastery
@javascriptmastery 4 месяца назад
Thank you, will do!
@pablotexeira7579
@pablotexeira7579 Месяц назад
It's unbelievable that we have access to this content for free. Thank you JSM, you make a difference in our community
@hooooman.
@hooooman. 5 месяцев назад
Hey Adrian, Please teach some more complicated topics like dockerization , kubernetes , deploying on AWS(or aws skills required for a web dev) , microservice architecture in nodejs, nginx etc. Having a good knowledge about these devOps skills gives confidence to propose to some open source organisations as well as building a strong tech profile,thus increasing the package even as a fresher. Your way of teaching will definitely make these complex topics more simpler for beginners! Hope your team consider this request 😅
@javascriptmastery
@javascriptmastery 5 месяцев назад
Thank you so much for the request recommendation!
@theintjengineer
@theintjengineer 5 месяцев назад
If that's what you wanna get into that, check *Tech World with Nana* - the best in the Business (DevOps, GitLab, Docker, k8s, DevSecOps, AWS, Terraform, Ansible, etc.) They cover all that in their GitLab CI/CD Course and DevOps and DevSecOps Bootcamp. They're a bit pricier, though, due to the size and coverage of the bootcamps. PS: no affiliation with them, whatsoever. Their content is just worth it recommending. And you can check lots of them and their quality on their YT Channel. Cheers
@yudrapawar
@yudrapawar 5 месяцев назад
Thank you so much sir for this amazing content 🙇🙇🙇 please make a video,how to deploy react native apps
@javascriptmastery
@javascriptmastery 5 месяцев назад
Will do!
@michealskup5730
@michealskup5730 5 месяцев назад
That's what we needed, ❤ hope to make more React Native tutorials in the near future 🎉🎉🎉
@javascriptmastery
@javascriptmastery 5 месяцев назад
That's the plan!
@DennisIvy
@DennisIvy 5 месяцев назад
Yesss!!! Love it!
@javascriptmastery
@javascriptmastery 5 месяцев назад
Thanks, Deniss!
@srijitchakraborty2225
@srijitchakraborty2225 5 месяцев назад
ABSOLUTE BEST. It's because of you we can become fullstack developers
@javascriptmastery
@javascriptmastery 5 месяцев назад
Yess! :)
@firebout7675
@firebout7675 5 месяцев назад
4:23:27 Unable to implement the create functionality: Getting Error: Inavalid response from storage.createFile while uploading
@jozsefsido9764
@jozsefsido9764 4 месяца назад
I'm having the same issue. It just doesn't want to upload anything to the storage. Console.loging the uplodadedFile, the result is undefined. Did you find out what causes the issue?
@otavioaraujo1352
@otavioaraujo1352 25 дней назад
What an aewsome course! Thank you for the time expended... Excelente!
@shashankpandey8346
@shashankpandey8346 4 месяца назад
Nothing is working for me. I have almost spent 8 hrs just for 30 mins of content, because nothing ducking works. Tailwind didn't work, and I have to install it three times. V2, v4 for sdk 49, then finally worked at sdk 50 version. Then configuring all assets and constants and everything gives error. I think mobile developers are so scarce, because of this.
@shashankpandey8346
@shashankpandey8346 4 месяца назад
Nothing's working. Absolutely nothing. Tailwind has just gone down the drain. I am completely writing everything on style attribute. I quit. Just quitting is easier than keep suffering.
@trupti0406
@trupti0406 2 месяца назад
@@shashankpandey8346 Did you resolve this?
@WellActualllyyy
@WellActualllyyy 2 месяца назад
@@shashankpandey8346 you need to install nativewind not tailwind lol
@pedramkatanchi5415
@pedramkatanchi5415 4 месяца назад
Please make a video about deploying to App stores. Thanks for the great content!
@clementebarros4097
@clementebarros4097 4 месяца назад
i have a problem with className, the system dont recognised it, i install everything and follow the video and documentation but still stuck with tailwind and i didnt find solution yet
@shkiper-minecraft
@shkiper-minecraft 3 месяца назад
Check the entire directory path to the project. There should be only English characters and no prohibited characters except _. It helped for me
@anastasiatverdostup5043
@anastasiatverdostup5043 3 месяца назад
are you running web version? it won't work
@Abnobery
@Abnobery 3 месяца назад
className is not recognised but I got suggestions for styles and it just works
@gregsafko7279
@gregsafko7279 3 месяца назад
@@Abnobery Please share the suggestions. Either the video is missing something or Tailwind has an issue, but my className directives are not working as expected. Thanks.
@yashrajjaiswal9941
@yashrajjaiswal9941 3 месяца назад
you can fix the className error by creating a global.d.ts file in the root of the project and pasting this > ///
@danielaguero8576
@danielaguero8576 5 месяцев назад
Just yesterday I was searching for mobile development, thanks so much for the video, a must watch video
@javascriptmastery
@javascriptmastery 5 месяцев назад
Enjoy!
@ZenAzou
@ZenAzou 2 месяца назад
Finaly learning React and first time sticking to a tutorial video longer than 30 mins. This is awesome! Thank you! 🤍🤍🤍
@dellkuldeep3005
@dellkuldeep3005 4 месяца назад
Bandwidth limit for your organization has exceeded. Please upgrade to higher plan or update budget cap. I'm getting this err what should I do next. I haven't seen my home, I using border to verify everything is working good. Please give me solution, I go frustrated.
@WhiteNinjaaProd
@WhiteNinjaaProd 4 месяца назад
You're using his links and he has free account so his bandwidth is gone not yours :) Upload own pictures is solution
@ChriScar1979
@ChriScar1979 5 месяцев назад
Awesome! Thank you very much for your tutorials! Could you make one for barber appointment bookings? Make it scalable, where many businesses can have their account by paying a subscription with their own homepage, and many clients can register to book their appointments!
@bikilanegasa4543
@bikilanegasa4543 5 месяцев назад
What a generous developer! Thank you for your time and energy!
@enjamurisagar3554
@enjamurisagar3554 5 месяцев назад
One and only the best channel for the learners. I have learnt many things from you. Thank you!!! 😍😍😍
@javascriptmastery
@javascriptmastery 5 месяцев назад
Thank you so much! 😍
@sanjanachauhan217
@sanjanachauhan217 5 месяцев назад
Then Therese who was watching the old react native video 2 hrs ago..tyyyy.🎉🎉❤❤❤
@javascriptmastery
@javascriptmastery 5 месяцев назад
Yess!
@Nitin-Pandita
@Nitin-Pandita 5 месяцев назад
Just in time !! Thank you for this video ❤
@javascriptmastery
@javascriptmastery 5 месяцев назад
You're so welcome! ❤
@syketb
@syketb 4 месяца назад
One of the best best best videos it is. Bro never stop these kind of tutorial, please do more react native tutorial, that makes your channel really really lot different from others. Take love from inner heart
@javascriptmastery
@javascriptmastery 4 месяца назад
More to come!
@brayanobisto
@brayanobisto 5 месяцев назад
3:05:10 When playing a video from the VideoCard component for some reason the ListHeaderComponent disappears, has anyone been able to fix it?
@mandlankosi2160
@mandlankosi2160 2 месяца назад
Finally got done with this tutorial. Took me a week due to work. But finally done. I came in knowing react native. But i wanted to understand some new things that were implemented and learn a bit of appwrite. I must say, this is gold. 10/10. Great course
@narayanpradhan4050
@narayanpradhan4050 2 месяца назад
im at 3hr time in the video, my videos aren't playing because they provided vimeo links.. what did you do in your case?
@mandlankosi2160
@mandlankosi2160 2 месяца назад
@narayanpradhan4050 what do you mean? I don't understand. The youtube video is on youtube. Not vimeo. I completed the entire 4 hour video
@tranequafauntleroy1427
@tranequafauntleroy1427 2 месяца назад
​@@narayanpradhan4050 LITERALLY searched through all the comments to find this!! My videos aren't playing either. I can even see the urls when i console.log(item) and console.log(item.video) and still nothing plays. Let me know if you find solution. I will do the same.
@kunalsisodia7668
@kunalsisodia7668 4 месяца назад
Hi Adrian, I'm trying to run the create-expo-app command but it's showing different files and no "App.js" file is being created. Moreover, the app folder is automatically created inside it there are .tsx files instead of jsx. it is taking typescript by default.
@TheThomazz1
@TheThomazz1 4 месяца назад
Have you gotten an answer for this yet? I'm also not using Typescript so would be nice to start fresh without all the Typescript in it and not have to remove it myself
@elliotlassey3118
@elliotlassey3118 3 месяца назад
kindly use the command in the pinned comment
@27forlife
@27forlife 9 дней назад
thanks for this tutorial bro i not only completed it but even made an apk file people can install keep up the good work
@RashedCodeAcademy
@RashedCodeAcademy 2 месяца назад
does anybody else has problem with initial configuration for expo, it seems there comes app folder by default and everything in it is tsx like _layout.tsx and idk if i follow along with tutorial with .tsx or should change em to .jsx
@sethhendrikz6949
@sethhendrikz6949 7 дней назад
can delete all of them and change to jsx...or just use tsx. It seems to work the same as jsx until you specify types...havent learnt typescript yet myself so easiest way is to delete and start fresh
@kdtallllll
@kdtallllll 3 месяца назад
The Icons for the tabs were absolutely not working on my mobile device. Dug into the problem and found out that the app.json "icon" was pointing to "./constants/icon.png" in mine. I must have made an error somewhere in setting up the project. It should have been "./constants/icon.js" this fixed it! Loving this tutorial
@shanesh777-91
@shanesh777-91 27 дней назад
Thank you! was stuck on this for so long
@smartbeeinc
@smartbeeinc 5 месяцев назад
YOU ARE AMAZING!!!!!!!!!
@javascriptmastery
@javascriptmastery 5 месяцев назад
You are!
@maestrogoldring1094
@maestrogoldring1094 5 месяцев назад
Hopped on RU-vid to see if there were any up to date React Native tutorials out there. Doesn’t get much more updated than this!
@javascriptmastery
@javascriptmastery 5 месяцев назад
More to come!
Далее
Coding Was HARD Until I Learned These 5 Things...
8:34
История Hamster Kombat ⚡️ Hamster Academy
04:14
Самая сложная маска…
00:32
Просмотров 627 тыс.
Это ваши Патрики ?
00:33
Просмотров 28 тыс.
Every React Concept Explained in 12 Minutes
11:53
Просмотров 659 тыс.
Front-end web development is changing, quickly
3:43
Просмотров 1,1 млн
КАК ОН АПНУЛ ТОП 1 МИРА !?
18:11
Просмотров 8 тыс.
The Complete App Development Roadmap [2024]
7:52
Просмотров 231 тыс.