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. 😃😃
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
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.
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.
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?
Hi Simon, danke fuer das Video. Koenntest du mal evtl etwas ueber supabase machen ( Mobile ). Besonders wuerde mich die Supabase Filestorage interessieren.
@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 ruclips.net/video/_k5v0KOfNZ0/видео.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.
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
🔥
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
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.
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.
Amazing 🔥🔥
Thanks 🔥
I'm frustrated with react-native-bottom-tabs, I can't add a padding between the icon and the label. Great tutorial Sir
Huge build.
Thanks!
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!
Sir, could you please do a video on how to develop a mobile app and deploy the same to appstore and googleplay.
Nice ❤
Thanks 🔥
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 :)
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!
I cant get this run on an android emulator. Im getting javascript heap out of memory error before it can deploy.
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?
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!
Sir please make a video for use JavaScript project
thanks
You're welcome!
Gold mine!
Thanks!
Simon give alle Or reshape like app clone
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.
first
btw the reason at ruclips.net/video/_k5v0KOfNZ0/видео.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.
Make a TikTok clone or RUclips short videos 😊
Can we please stop this Nextjs hype. Give us Some clone tutorials with Remix 😢
There is no NextJS in this video :D
You speaking a lot without benefit,
don't watch
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";