At 4:01 there is an undefined error, as Simon identifies it is because tickers is undefined at some point but this can also still cause issues if we are awaiting a response, you can add 'isSuccess &&' after 'tickers && 'to the condition where isSuccess is a variable extracted from the tanstack query. isSuccess is a boolean value on whether your api call was successful. And also want to say thanks to Simon for another excellent video for upskilling.
I just got a job at a fintech company, and i was re-writing the main application. I have faced some many challenges that you address here. Thank you! I will work on this tutorial this weekend. I am so excited!
in these 2 days I learned a lot from you. especially the community plugins and codes. thank you so much for making this video and I wish you keep making cool videos like these in future. love and support
you should've mentioned in the intro about pro version of clerk for SMS verification. I took me a whole day to figure out and complete email authenticaiton.
Great video. I would like to mention that every time we installed a new dependency I had to do a bunch of debugging and changing build environments. Specifically for Android. You should make a note about that because I lost hours just to get things to work on every npm intall
Саймон, привет, спасибо тебе огромное за твои видео, они действительно очень сильно помогают на практике узнать очень много нового и полезного про React Native! Simon, hello, thank you very much for your videos, they really helpful to know many new and useful things in practice about React Native!
Amazing app contains lots of information and use multiple tolls is really awesome. please make a tutorial for e-commerce app which using all this tolls.
In terms of apple messing up with PWAs - are react native apps more future proof in this sense? i.e. Would react native apps suffer any of the same setbacks as PWAs? Thanks!
Idk, yesterday I completed Auth 1:20:00, and the next day it shows a registration error !UPDATE: 04.07.2024 I am a stupid . After registration it should be obvious that I can't register again with the same number, that's why I got the error.
Hey Man Can you help me? ERROR TypeError: window.addEventListener is not a function (it is undefined), js engine: hermes when ever i try to use clerk provider it gives me this error
Amazing! I was stucked with Expo until I knew about you. I have a question. What happen with the local storaged transactions if you log in the app with another user? I did a test and I guess everyone logged in can see it, I don't know if I'm doing something wrong or in a real app there is a better way to do all this stuff. Thank you very much!
I didnt see the whole video, I’m just a curious backend guy but I can guess what happens. Yes, in a real app this would be handled differently. The data would come from a server. You don’t really want your local storage to be the source of truth. And obviously you don’t want to make a request every time you need transaction logs. So you would have 1 api client class that implements some interface (TransactionRepository?) and another one that takes in the constructor that class and uses it to get the data, but it handles caching. When your code uses that class to get data, it checks the time to live of chached data and returns it or invalidates it and makes an API request, chaching the result. The transactions cache should be per user. So for example in a KV store you can prepend username/ to each key. In sqlite you filter by a user column. To be more resilient against developers mistakes, depending on the project it could be a good idea to invalidate cached information (all users).
Great News, let us see how react-native can compete in Fintech apps compared to other C#, Nodejs and Ionic (Angular). Is it possible to take it into production level in the app store?
After installing clerk packages my app stopped working and getting a error Error: Cannot find native module 'ExpoApplication', js engine: hermes not sure what do to
hi simon it's very good video very helpful to me. and after i did, i have just one question. is it okay to make ui just using px? like height: 60? shouldn't it be responsive ui?
Hi sir i tried to follow you step by step but got stuck when I use zustand and mmkv and zeego the errors are ( ERROR Error: react-native-mmkv is not supported in Expo Go! Use EAS (`expo prebuild`) or eject to a bare workflow instead., js engine: hermes ) is for mmkv and the second error is Invariant Violation: requireNativeComponent: "MenuView" was not found in the UIManager help me sir
this worked for me. Require the video directly instead of using assets change: source={{ uri: assets[0].uri }} to: source={require('@/assets/videos/intro.mp4')}
thank you sir for sharing amazing skills. I followed the tutorial and I got stuck about code verification I cannot receive the verification code on my phone can you please help me
well is anybody getting the error message: Android Bundling failed 948ms (C:\Users\user\Desktop\app\Fintech ode_modules\expo-router\entry.js) Unable to resolve "expo-application" from "node_modules\@clerk\clerk-expo\dist\singleton.js"
I also unable to see the video on my Android device. I dont receive error from expo av but I tested my Android is unable to play the intro.mp4. I have to replace the video with another one and then my problem fixed.
@@ian2neko you just replace the video and thats all? The vid from the file that is on the code it doesn't work on android. You think i should replace de video?
@@diegoletelier502 I am not sure whether you have the same problem as me. You can test sending the video to your device and play it. If it plays, you are having different problem.
For me: on Android emulator, the file size is too big to be allocated in the memory which caused an error, - you can lower the video size or change it to much smaller one (I Didn't do that) or (what I did) add android:largeHeap="true" in androidmanifest.xml inside the like this
Hey Simon, got another small question. I tried to get Zeego working, seems to do everything correctly except adding in the icons. I am not using Ios rather android, but tried folowing the doku or you made the icon not appear. You have small example there? Btw, do you also have a discord to hang out and maybe ask some questions?
Have you considered the necessity of featuring your face prominently in videos where the primary focus is on showcasing code? While your presence adds a personal touch, perhaps it might be worth exploring alternative methods to balance this. One approach could involve recording yourself separately and integrating your video into the content during editing, ensuring it complements rather than obstructs any crucial visuals.
On the first sentence i thought this was a hate commend, but this is a good feedback comment! :D I hope to see more people like you on yt, good job bro
I like watching his mimics, mustache and blue eyes. No thirst. He is expressive, I enjoy the coding theater. So close up to your face if you're gonna size down the recording screen, please.
Are you sure the signOut function is working? I might have messed something up in the top _layout file but when i try to signOut with clerks useAuth signOut method, i get a warning, Possible unhandled promise rejection, (id:0): error: No native splash screen registered for given view controller. Call 'SplashScreen.show' for given view controller first. As I understand it the entire file is re rendered when isSigned in updates and since the splash screen is not shown it cannot hide it again and the app crashes
Personal Tracker
04/04 - THE END ~ Thanks so much Simon 🙏
04/03 - 3:47:35
04/01 - 2:12:18
03/31 - 2:03:26
03/30 - 1:31:13
03/28 - 1:04:33
03/27 - 0:56:52
03/26 - 0:18:16
At 4:01 there is an undefined error, as Simon identifies it is because tickers is undefined at some point but this can also still cause issues if we are awaiting a response, you can add 'isSuccess &&' after 'tickers && 'to the condition where isSuccess is a variable extracted from the tanstack query. isSuccess is a boolean value on whether your api call was successful.
And also want to say thanks to Simon for another excellent video for upskilling.
I just got a job at a fintech company, and i was re-writing the main application. I have faced some many challenges that you address here. Thank you! I will work on this tutorial this weekend. I am so excited!
That is awesome!
It’s cool to see these right when they first come out!
Bro 2 days back I was thinking to build Revolut Clone and here you built it.
I can read minds 👀
@@galaxies_dev please make video on how to read minds 😄😄😄
in these 2 days I learned a lot from you. especially the community plugins and codes.
thank you so much for making this video and I wish you keep making cool videos like these in future.
love and support
Glad I could help and you are very welcome!
Amazing video Simon. You single handedly taught me react and expo.
Wow that is amazing, thank you so much!
This information is indeed worthwhile. Thanks Simon
You are welcome!
Great news, Simon! Will wait for the video
seems like almost perfect, just need to somehow get a datastorage behind everything. But will look at the video and just get started :)
I just started following your channel, thank you for making your classes available!
You are very welcome!
you should've mentioned in the intro about pro version of clerk for SMS verification. I took me a whole day to figure out and complete email authenticaiton.
This is awesome dude, helped me a lot.
Glad to hear it!
Thanks SImmon, your works is amazing
Thank you 🙏
woo Thank you sir , one of the best learning platform ....
Glad to hear that you enjoy the content :)
@@galaxies_dev pls sir i don't know why OTP not receive .....
google hired me after this project ,thanks sir
WOW!
I just finished it! Thank you so much
You're so welcome!
Great video. I would like to mention that every time we installed a new dependency I had to do a bunch of debugging and changing build environments. Specifically for Android. You should make a note about that because I lost hours just to get things to work on every npm intall
That sounds very strange, normally it's just re-running the run command!
Саймон, привет, спасибо тебе огромное за твои видео, они действительно очень сильно помогают на практике узнать очень много нового и полезного про React Native!
Simon, hello, thank you very much for your videos, they really helpful to know many new and useful things in practice about React Native!
Can't wait for the API routes with Expo Router!
Exactly man
API routes are 🔥
This going to be lit🔥
8:45 - How can I get the plugin that has the dropdown list in Terminal?
Thank you for this especially the app icon customizable. Hopefully you can also try to create an home widget using expo
Good idea for a future video!
Thank you so much for sharing your experience and knowledge, Sir.
My pleasure!
I need to watch this fully!
thank you for sharing this video it was an amazing and i learned a lot from you. appreciate it
If you enjoyed it, could you share the channel with your RN buddies? ️👋
Thanks!
Sir am so happy to be here
Me too!
Thank you, Mr. Adrian. But i have a question what about the screens for the drivers?. How will they be able to accept the ride and get paid
Why didn't you include isLoaded and segments in that use effect dependency array? ( at 1:28:36 )
Great video ❤
Hey Simon, not sure it is what you meant about the command but just cd to the directory and "code -r ."
you forgot the dot
Thanks, will give it a try!
What plugin are you using for the terminal for this autocomplete drop-down?
Hi Simon, great content.
May I ask you how I can lock screen in landscape mode on tablet devices (android tablets)?
Thank you!
what extension are you using to show the colors from your constants?
Amazing app contains lots of information and use multiple tolls is really awesome.
please make a tutorial for e-commerce app which using all this tolls.
Noted!
hi dude . I wanna get your github?
you just get a new subscriber bro
Thank you so much!
In terms of apple messing up with PWAs - are react native apps more future proof in this sense?
i.e. Would react native apps suffer any of the same setbacks as PWAs?
Thanks!
Idk, yesterday I completed Auth 1:20:00, and the next day it shows a registration error
!UPDATE: 04.07.2024
I am a stupid . After registration it should be obvious that I can't register again with the same number, that's why I got the error.
😂Happens
Hey Man Can you help me? ERROR TypeError: window.addEventListener is not a function (it is undefined), js engine: hermes when ever i try to use clerk provider it gives me this error
Hello Simon, please is it possible to use zustand for lock state management. Thank you
amazing tut
Thank you mate!
How about implementing a referral system for the users? Any SDK we can use?
I love your content, really awesome... 🎉
Thank you so much 😀
Please I can't connect to clerk, what could be the problem?
Amazing! I was stucked with Expo until I knew about you. I have a question. What happen with the local storaged transactions if you log in the app with another user? I did a test and I guess everyone logged in can see it, I don't know if I'm doing something wrong or in a real app there is a better way to do all this stuff. Thank you very much!
I didnt see the whole video, I’m just a curious backend guy but I can guess what happens.
Yes, in a real app this would be handled differently.
The data would come from a server.
You don’t really want your local storage to be the source of truth.
And obviously you don’t want to make a request every time you need transaction logs.
So you would have 1 api client class that implements some interface (TransactionRepository?) and another one that takes in the constructor that class and uses it to get the data, but it handles caching.
When your code uses that class to get data, it checks the time to live of chached data and returns it or invalidates it and makes an API request, chaching the result.
The transactions cache should be per user. So for example in a KV store you can prepend username/ to each key. In sqlite you filter by a user column.
To be more resilient against developers mistakes, depending on the project it could be a good idea to invalidate cached information (all users).
that's is amazing and impressive
Thank you!
How to create the tooltip for cartesian chart in javascript ?
Great News, let us see how react-native can compete in Fintech apps compared to other C#, Nodejs and Ionic (Angular). Is it possible to take it into production level in the app store?
For sure!
Hi great video, do you know why my api routes just return the page html?
Hey Simon Grimm, i'm on windows but i wanted to debug on a iPhone, is threre a solution for prebuild ?
what are the alternative for OTP?
I discovered your channel a few weeks back and I really enjoy your content. I have a question. How do you get autocomplete on your terminal?
Oh-my-zsh zsh-autosuggestions
@@j._7054 Thank you 🙏🏽
Wow, thank you!!
Happy to share :)
unfortunately it looks like clerk auth isn't supported in my country what alternative can i use ?
can you make an application that can receive the notification if the application is closed or does not have internet
can u please explain how i can fix expo build on ios ?
Is it possible to integrate a crud in laravel in this project?
Sure you can!
To open a folder in vscode within the terminal you have to first cd into the folder you want to open then use the ‘code .’ command
you can actually do it with "code -r foldername" as well!
After installing clerk packages my app stopped working and getting a error Error: Cannot find native module 'ExpoApplication', js engine: hermes not sure what do to
Please did you fix this? I'm stuck here
what extensions are you using for vscode?
waiting ...
why not today, since the tutorial is made
I'm getting "Cannot find native module 'ExpoApplication' " error when I try to run app in dev client. Does anyone know how can I fix it ?
I'm also getting this
@@zackfine4542 at what part?
can u please make a video that explains how i can fix expo build on ios because that im not using expo to make native projects
Please share an video of how to setup this GitHub repository in windows.
hi simon it's very good video very helpful to me. and after i did, i have just one question. is it okay to make ui just using px? like height: 60? shouldn't it be responsive ui?
If you use fixed values your UI won't be responsive, so it's usually not a good idea
What about taking this application and developing it for Android?
Fire !!!!!!
where you install mmkv ? what part inthis video ?
I'm thinking about to start this video is that worth it???????
Because im error when i install it unable create instance
It's at 01:52:01
Awesome video! And also, I love how your VS looks like. Which theme or personalization do you have?
I use Shades of Purple!
@@galaxies_dev Thank you so much! I want to see all your videos!
Hi sir i tried to follow you step by step but got stuck when I use zustand and mmkv and zeego the errors are ( ERROR Error: react-native-mmkv is not supported in Expo Go! Use EAS (`expo prebuild`) or eject to a bare workflow instead., js engine: hermes ) is for mmkv
and the second error is Invariant Violation: requireNativeComponent: "MenuView" was not found in the UIManager help me sir
did you try reproducing your issue on the github repo that is in the video comments?
A little bit late.
These 2 libraries cannot be used with Expo Go. You need to use expo prebuild since they are using native APIs.
" code . -r " that is the command to open on the current windows in VSCode.
Thank you!
@@galaxies_dev Thanks to you for all the good you share
the video of the first screen didn't load for me
this worked for me. Require the video directly instead of using assets
change: source={{ uri: assets[0].uri }}
to: source={require('@/assets/videos/intro.mp4')}
@@iammakafui5667 thanks
is face ID package work properly in Andorid why you don't use Android Emulator
How secure is clerk in a real production????
how to integarte backend to this and add payment methods
clerk not support Sri Lankan country code and some of most country codes..so please do phone auth with some other ....thanks🤔
thank you sir for sharing amazing skills. I followed the tutorial and I got stuck about code verification I cannot receive the verification code on my phone can you please help me
i'm not been able to access clerk website
is it just me?
Sir do you give up on angular/ionic thing?😮😢
Video not playing on andorid. Not visible
Simply Nice😊😊
You are welcome!
How to start with react native after angular is it necessary to know react js
No, I think you can pick up React while learning React Native!
In the api route the ExpoRequest is deprecated. Do we just use the regular Request from react native?
yes ,use Request and Response according to the expo documentation
hey, here presentation: 'modal not working in android working in iOS
well is anybody getting the error message: Android Bundling failed 948ms (C:\Users\user\Desktop\app\Fintech
ode_modules\expo-router\entry.js)
Unable to resolve "expo-application" from "node_modules\@clerk\clerk-expo\dist\singleton.js"
me too my friend !
did you found a solution ?
ERROR TypeError: window.addEventListener is not a function (it is undefined), js engine: hermes how to solve it i m stuck here
Hey, i got some error with the expo av. My video doesn't render properly. And i got the same code as you
I also unable to see the video on my Android device. I dont receive error from expo av but I tested my Android is unable to play the intro.mp4. I have to replace the video with another one and then my problem fixed.
@@ian2neko you just replace the video and thats all? The vid from the file that is on the code it doesn't work on android. You think i should replace de video?
@@diegoletelier502 I am not sure whether you have the same problem as me. You can test sending the video to your device and play it. If it plays, you are having different problem.
For me:
on Android emulator, the file size is too big to be allocated in the memory which caused an error,
- you can lower the video size or change it to much smaller one (I Didn't do that)
or (what I did)
add android:largeHeap="true" in androidmanifest.xml inside the like this
While doing the widgets in android is anyone getting the engine error. Expected 0 arguments but got 1
Can u give Ionic some luvin? Version 8 beta is out.
What about integrating TailwindCSS into project in the next video?
Yeah waiting for the next Nativewind release!
i wonder why tanstack query wasnt enough for state management but also zustand was used? (i didnt watch the video yet)
Component state with zustand.
Global state with query
Hey Simon, got another small question. I tried to get Zeego working, seems to do everything correctly except adding in the icons. I am not using Ios rather android, but tried folowing the doku or you made the icon not appear. You have small example there? Btw, do you also have a discord to hang out and maybe ask some questions?
Have you considered the necessity of featuring your face prominently in videos where the primary focus is on showcasing code? While your presence adds a personal touch, perhaps it might be worth exploring alternative methods to balance this. One approach could involve recording yourself separately and integrating your video into the content during editing, ensuring it complements rather than obstructs any crucial visuals.
This is great feedback. I will definitely think about this and see if I can improve my videos that way!
On the first sentence i thought this was a hate commend, but this is a good feedback comment! :D
I hope to see more people like you on yt, good job bro
I like watching his mimics, mustache and blue eyes. No thirst. He is expressive, I enjoy the coding theater.
So close up to your face if you're gonna size down the recording screen, please.
Are you sure the signOut function is working? I might have messed something up in the top _layout file but when i try to signOut with clerks useAuth signOut method, i get a warning, Possible unhandled promise rejection, (id:0): error: No native splash screen registered for given view controller. Call 'SplashScreen.show' for given view controller first.
As I understand it the entire file is re rendered when isSigned in updates and since the splash screen is not shown it cannot hide it again and the app crashes
Thank you for saving me...I am a freelancer...
Happy to help!
awesome, y not use nativewind for styling
Maybe next time ;)
Please integrate stripe with monthly subscription and free plan
i have a query can any one explain me how to bring mobile phone on laptop screen?
You can do it by opening android studio and go into AVD Manager to create a virtual device and launch it.
does anyone have an issue getting the video to show on android?
This doesnt appear to have an App.js in the repo. Am I missing something?
This is using Expo Router, there is no need for an app.js!
hi dude which version of XCODE are you using?
I think the min version is 14.