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.
Саймон, привет, спасибо тебе огромное за твои видео, они действительно очень сильно помогают на практике узнать очень много нового и полезного про 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!
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
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
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
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
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!
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?
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
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).
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?
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
@galaxies_dev, the "npx expo prebuild" simply destroys the project for me, it's unable to install cocoapods and I cannot run the app. I tried installing manually, does not work. Any suggestions?
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.
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
Hey Simon, I am using the latest version of Expo 51. And when I install zeego and try to run the ios emulator I got the following error: Error: Cannot find native module 'RNIContextMenuView', js engine: hermes Can you please help?
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 dont even see the video in the screen followed the same code... But if i paste the image link from any website it works.. Why the local video is not visible?? I'm currently doing in android emulator
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?
I am facing this error Cannot find native module RNIContextMenuView' , on. Mac as well on Windows I am using a physical device through expo go can anyone pls help
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
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.
Why didn't you include isLoaded and segments in that use effect dependency array? ( at 1:28:36 )
seems like almost perfect, just need to somehow get a datastorage behind everything. But will look at the video and just get started :)
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
google hired me after this project ,thanks sir
WOW!
This is awesome dude, helped me a lot.
Glad to hear it!
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 .....
Can't wait for the API routes with Expo Router!
Exactly man
API routes are 🔥
8:45 - How can I get the plugin that has the dropdown list in Terminal?
Саймон, привет, спасибо тебе огромное за твои видео, они действительно очень сильно помогают на практике узнать очень много нового и полезного про 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!
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.
Thanks SImmon, your works is amazing
Thank you 🙏
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!
What plugin are you using for the terminal for this autocomplete drop-down?
Sir am so happy to be here
Me too!
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
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!
Hello Simon, please is it possible to use zustand for lock state management. Thank you
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!
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?
Please I can't connect to clerk, what could be the problem?
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
How about implementing a referral system for the users? Any SDK we can use?
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!
Thank you so much for sharing your experience and knowledge, Sir.
My pleasure!
Hi Simon, great content.
May I ask you how I can lock screen in landscape mode on tablet devices (android tablets)?
Thank you!
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!
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!
This going to be lit🔥
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
what extension are you using to show the colors from your constants?
I need to watch this fully!
unfortunately it looks like clerk auth isn't supported in my country what alternative can i use ?
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).
How to create the tooltip for cartesian chart in javascript ?
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!
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?
ERROR TypeError: window.addEventListener is not a function (it is undefined), js engine: hermes how to solve it i m stuck here
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 🙏🏽
Hey Simon Grimm, i'm on windows but i wanted to debug on a iPhone, is threre a solution for prebuild ?
Hi great video, do you know why my api routes just return the page html?
is face ID package work properly in Andorid why you don't use Android Emulator
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
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
What about taking this application and developing it for Android?
@galaxies_dev, the "npx expo prebuild" simply destroys the project for me, it's unable to install cocoapods and I cannot run the app. I tried installing manually, does not work. Any suggestions?
That's strange, I never experienced issues with prebuild :/ Is your app.json set up correctly? Do you have the native SDKs and tools installed?
can u please explain how i can fix expo build on ios ?
hey, here presentation: 'modal not working in android working in iOS
can you make an application that can receive the notification if the application is closed or does not have internet
what extensions are you using for vscode?
what are the alternative for OTP?
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
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?
Great video ❤
you just get a new subscriber bro
Thank you so much!
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
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
Sir do you give up on angular/ionic thing?😮😢
I love your content, really awesome... 🎉
Thank you so much 😀
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
Is it possible to integrate a crud in laravel in this project?
Sure you can!
clerk not support Sri Lankan country code and some of most country codes..so please do phone auth with some other ....thanks🤔
How secure is clerk in a real production????
that's is amazing and impressive
Thank you!
how to integarte backend to this and add payment methods
amazing tut
Thank you mate!
Please share an video of how to setup this GitHub repository in windows.
Video not playing on andorid. Not visible
" 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
i'm not been able to access clerk website
is it just me?
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
Hey Simon, I am using the latest version of Expo 51. And when I install zeego and try to run the ios emulator I got the following error:
Error: Cannot find native module 'RNIContextMenuView', js engine: hermes
Can you please help?
hi. please were you able to solve this?
While doing the widgets in android is anyone getting the engine error. Expected 0 arguments but got 1
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 ?
Wow, thank you!!
Happy to share :)
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!
What about integrating TailwindCSS into project in the next video?
Yeah waiting for the next Nativewind release!
I dont even see the video in the screen followed the same code... But if i paste the image link from any website it works.. Why the local video is not visible?? I'm currently doing in android emulator
did you fix that mistake?
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!
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
ERROR Error: Cannot find native module 'ExpoApplication', js engine: hermes
No luck finding a solution to this. Anyone?
Did you find a solution?
Simply Nice😊😊
You are welcome!
I am facing this error Cannot find native module RNIContextMenuView' , on. Mac as well on Windows I am using a physical device through expo go can anyone pls help
were you able to solve this?
@@abduljamalolakunle8685 no bro
does anyone have an issue getting the video to show on android?
Can u give Ionic some luvin? Version 8 beta is out.
hi dude which version of XCODE are you using?
I think the min version is 14.
awesome, y not use nativewind for styling
Maybe next time ;)
waiting ...
why not today, since the tutorial is made