Simon your the sole reason I stared building software and apps it really changed my life truly grateful for your tutorials bro I wish I can give you a kiss on the forehead bro lmao much love keep crushing it
Just missing the offline first feature here. With that one this tutorial must've been a blast. Still I need to study alot from this tutorial thanks for the video. 😃😃
Extremely excited about Customer Center as well. Please make a tutorial how to implement it from React Native. For now i think they only have Swift code sample.
Hello Simon you have make an complete application you make so what is the size of apk file can you please tell me that? Because the main problem is that apk file size
Hi Simon, danke fuer das Video. Koenntest du mal evtl etwas ueber supabase machen ( Mobile ). Besonders wuerde mich die Supabase Filestorage interessieren.
I am watching right now (2:24:42). If we add sentry to our apps, what should we do?. I mean what we have to do on apple and google side if we want to release our apps.
10:08 how did you get this auto completion in terminal? What is the plugin for zsh or vsc extenstion? edit: it comes from Cursor Text Editor, I suppose.
For those who have the same problem, I managed to fix this issue by removing the version of nodejs on my PC and installing the previous LTS version. So in my case I went from v 23 to v20 and my javascript memory issue disappeared and I was able to run on my local android device.
@galaxies_dev ah, I see. I am new to mobile development and I haven’t gotten to setting up a paywall yet. I heard Apple takes 15% of your earnings from other videos and figured that cutting cost would be preferable but I guess not in this case. Convenience > money.
btw the reason at ua-cam.com/video/_k5v0KOfNZ0/v-deo.html that the completed update didnt work without using the async function is because you need to add an .execute() method at the end of the command.
Hi @galaxies_dev I have an issue with the expo when I move to some other screens, I first render the homepage just guest users and then move to the signup page and fill in the data then I choose the application to just minimize, but then I come back again, and the full app reloads again, which makes the state lose its values n screen as well ** app not in kill state how to deal with this?
I have this error that says: drizzle/0000_jittery_millenium_guard.sql: Missing semicolon. (1:6)... this was the file that was generated by the drizzle kit. The file looks like this: CREATE TABLE "users_table" ( "id" integer PRIMARY KEY , "name" text NOT NULL, "age" integer NOT NULL, "email" text NOT NULL ); --> statement-breakpoint CREATE UNIQUE INDEX "users_table_email_unique" ON "users_table" ("email"); Additionally the sqliteTable() in schema.ts is marked as deprecated... Any idea what the problem could be?
I had the same issue. I solved it by replacing const expoDB = openDatabaseSync("todos"); with const expoDB = SQLite.openDatabaseSync("todos"); This is according to the docs because i had installed the latest version of expo-sqlite. You need to import expo-sqlite at the top: import * as SQLite from "expo-sqlite";
Simon your the sole reason I stared building software and apps it really changed my life truly grateful for your tutorials bro I wish I can give you a kiss on the forehead bro lmao much love keep crushing it
wow thank you mate 💪
Thanks for everything Simonn. You and your videos are awesome.
My pleasure!
Just missing the offline first feature here. With that one this tutorial must've been a blast. Still I need to study alot from this tutorial thanks for the video. 😃😃
You are welcome!
Simon is the marvel studio for react native tutorials
🔥
Extremely excited about Customer Center as well. Please make a tutorial how to implement it from React Native. For now i think they only have Swift code sample.
Will do!
more react native + drizzle orm tutorials please as drizzle orm is so cool
Yeess!
@@galaxies_dev It seems that useLiveQuery doesn't work properly. I can't make it work.
Hello Simon you have make an complete application you make so what is the size of apk file can you please tell me that? Because the main problem is that apk file size
Sir, could you please do a video on how to develop a mobile app and deploy the same to appstore and googleplay.
can you do a multi-guest live app, like on TiKToK? it would be nice to see how that's done with react-native and a interactive livestream SDK.
Huge build.
Thanks!
Amazing 🔥🔥
Thanks 🔥
Hi Simon, danke fuer das Video. Koenntest du mal evtl etwas ueber supabase machen ( Mobile ). Besonders wuerde mich die Supabase Filestorage interessieren.
Yes :)
@@galaxies_devThanks!
I'm frustrated with react-native-bottom-tabs, I can't add a padding between the icon and the label. Great tutorial Sir
How do you write log expressions easily?
What theme do you use in the code editor?
I am watching right now (2:24:42). If we add sentry to our apps, what should we do?. I mean what we have to do on apple and google side if we want to release our apps.
There's no change for Apple or Google required
@galaxies_dev I mean we can observe user screens with sentry? I guess we have to do some extra things for that reason
Awesome Video. What are you using to add console log statement that automatically fills methodName and the selectedVariable??
Should be Turbo Console Log
Hey great video, What is the ai claude plugin u r using in vs code ?
Is it cursor !
Yes :)
Sir please make a video for use JavaScript project
Hi Simon, this is a great video and very interesting use of Drizzle with SQLite. Is there a way to sync our database with a cloud database ?
PowerSync or EletricSQL do the job
Sure, I have used PowerSync before!
Nice ❤
Thanks 🔥
thanks
You're welcome!
10:08 how did you get this auto completion in terminal? What is the plugin for zsh or vsc extenstion? edit: it comes from Cursor Text Editor, I suppose.
Yeah Cursor!
Is anything paid in this project ?
Are you using any thing that required money to use it ?
Simon give alle Or reshape like app clone
Gold mine!
Thanks!
I cant get this run on an android emulator. Im getting javascript heap out of memory error before it can deploy.
For those who have the same problem, I managed to fix this issue by removing the version of nodejs on my PC and installing the previous LTS version. So in my case I went from v 23 to v20 and my javascript memory issue disappeared and I was able to run on my local android device.
Why not just use Apple payments feature? They are already taking a cut, no? Wouldn’t you be paying for two services?
Handling IAP purchases directly is a PITA, but feel free to give it a try :D
@galaxies_dev ah, I see. I am new to mobile development and I haven’t gotten to setting up a paywall yet.
I heard Apple takes 15% of your earnings from other videos and figured that cutting cost would be preferable but I guess not in this case.
Convenience > money.
Make a TikTok clone or UA-cam short videos 😊
btw the reason at ua-cam.com/video/_k5v0KOfNZ0/v-deo.html that the completed update didnt work without using the async function is because you need to add an .execute() method at the end of the command.
Can we please stop this Nextjs hype. Give us Some clone tutorials with Remix 😢
There is no NextJS in this video :D
first
You speaking a lot without benefit,
don't watch
Hi @galaxies_dev I have an issue with the expo
when I move to some other screens, I first render the homepage just guest users and then move to the signup page and fill in the data then I choose the application to just minimize, but then I come back again, and the full app reloads again, which makes the state lose its values n screen as well
** app not in kill state
how to deal with this?
I have this error that says: drizzle/0000_jittery_millenium_guard.sql: Missing semicolon. (1:6)... this was the file that was generated by the drizzle kit. The file looks like this:
CREATE TABLE "users_table" (
"id" integer PRIMARY KEY ,
"name" text NOT NULL,
"age" integer NOT NULL,
"email" text NOT NULL
);
--> statement-breakpoint
CREATE UNIQUE INDEX "users_table_email_unique" ON "users_table" ("email");
Additionally the sqliteTable() in schema.ts is marked as deprecated...
Any idea what the problem could be?
Please check the location of your babel.config.js file. It should be in the root of the project directory.
If you have prettier to remove semicolons from js/ts files you may get this error.
I had the same issue. I solved it by replacing const expoDB = openDatabaseSync("todos"); with const expoDB = SQLite.openDatabaseSync("todos"); This is according to the docs because i had installed the latest version of expo-sqlite. You need to import expo-sqlite at the top: import * as SQLite from "expo-sqlite";