I have watched 3 tutorials so far I learned more than what I have learned in 1 year. Thanks a lot Vadim. I just wished I found you earlier well better late than never. I will donate to your channel if I get a jobs. Thanks again
Solution for the error: Failed running 'src/index.ts' Error: Neither apiKey nor config.authenticator provided at Stripe._setAuthenticator Context: You didn't learn the course: building a scalable API with NodeJS, just clone the source code. Solution: in api/.env, add 3 lines: STRIPE_PUBLISHABLE_KEY="demo" STRIPE_ENDPOINT_SECRET="demo" STRIPE_SECRET_KEY="demo"
I added 3 lines in api/.env, but it still have this error ( Neither apiKey nor config.authenticator provided at Stripe._setAuthenticator ), how i can fix it ?
HI,, What could be the reason why Gluestack is not working for me? It's like it doesn't recognize the components. I compared it with the repository, and everything is the same. I have reinstalled the components, but the issue remains
Yes, I also face the same issues. If all the error are fixed then. It shows an error that global.css memory error. If you install nativewind manually then it does not loading tailwinds
Anyone find a workaround with Gluestack not rendering properly with Expo 52? Unfortunately I am unable to get any locally installed Gluestack components to display.
Thank you for this brilliant video. Whenever I import using @/components/** it comes through without any styles at all. I am using router and have tried importing global.css to _layout.tsx but no luck... importing using '@gluestack-ui/themed' works fine. Any ideas?
Thank you for this rich tutorial. I really enjoyed. however, every one or two minutes, an advertisement showed and it was annoying for a 4h video. I don't know if this is being handled by you or RUclips.
What’s the difference between navigating from one page to another using useNavigation versus using Link? I’m not sure when to use each of them. Could you help me?
In case anyone else needs to know this... Use for static navigation like menus or links, as it’s simple and declarative. Use useNavigate for dynamic navigation when logic or events determine the destination programmatically.
@@truszko91 So, if the user logs in and the process is successful, we use useNavigation to navigate them. However, if the user just needs to click a button and go to the next page without any logic involved, we use . Thank you so much, by the way.
can someone tell me how can we generate an apk once the app is finish? with react expo is impossible for me 😔 5bg app to make an apk nothing works for me
You can build it locally if you have Android Studio setup (docs.expo.dev/guides/local-app-development/) Or you can use EAS to build it in the cloud (docs.expo.dev/build/introduction/)
FullstackEcommerce\ecommerce-mobile ode_modules\expo-router/entry.js ▓▓▓▓▓▓▓▓▓▓░░░░░░ 64.6% (437/582) For some reason this app doesn't run on windows, it will freeze like above. do you know the reason?
Solution for the error: failed to fetch Missing Header ensure cors response headers are valid blocked Context: In (Expo)/api/products.ts, fetching products from (Express)/api Solution: In (Express)/api/src/index.ts, add the following code before app.get('/',...): app.use(function (req, res, next) { res.header('Access-Control-Allow-Origin', '*'); res.header('Access-Control-Allow-Methods', 'GET,HEAD,OPTIONS,POST,PUT'); res.header('Access-Control-Allow-Headers', 'Origin, X-Requested-With, Content-Type, Accept, Authorization'); next(); });
I have watched 3 tutorials so far I learned more than what I have learned in 1 year. Thanks a lot Vadim. I just wished I found you earlier well better late than never. I will donate to your channel if I get a jobs. Thanks again
Glad I could help! Hope you manage to learn even more🙌🙌
I love the way you explained the concept-it’s so clear and easy to understand! I try to follow it and implement it on my channel 😊
I Accidently felt asleep and left a yt video playing now im here 🤣🤣🤣
Welcome!😁🙌
Solution for the error: Failed running 'src/index.ts'
Error: Neither apiKey nor config.authenticator provided at Stripe._setAuthenticator
Context:
You didn't learn the course: building a scalable API with NodeJS, just clone the source code.
Solution:
in api/.env, add 3 lines:
STRIPE_PUBLISHABLE_KEY="demo"
STRIPE_ENDPOINT_SECRET="demo"
STRIPE_SECRET_KEY="demo"
I added 3 lines in api/.env, but it still have this error ( Neither apiKey nor config.authenticator provided at Stripe._setAuthenticator ), how i can fix it ?
HI,, What could be the reason why Gluestack is not working for me? It's like it doesn't recognize the components. I compared it with the repository, and everything is the same. I have reinstalled the components, but the issue remains
with me too. I chose gluestack to develop my college project and now it's not working
me too
@@anumm1560 no bro
Yes, I also face the same issues. If all the error are fixed then. It shows an error that global.css memory error. If you install nativewind manually then it does not loading tailwinds
Allhumdulillah, My issue has been fixed.
Thank you very much bro, God bless you with wealth.
Do you have some tutorial where show implementation reCAPTCHA Validation to React Native App?
awesome
Hello , I fix the dynamic column error setting the key with the numColumn value, cool pack of components thanks.
That's great, thanks!
maybe i miss something, but how to set a component to display first when open a app?
With Expo router, the initial screen that it will render is the `app/index.tsx`
does anyone have access to the guide where the SQL QUERIES are? it is not loading from here
Wheres the payment gateway part
Anyone find a workaround with Gluestack not rendering properly with Expo 52?
Unfortunately I am unable to get any locally installed Gluestack components to display.
Thank you for this brilliant video.
Whenever I import using @/components/** it comes through without any styles at all. I am using router and have tried importing global.css to _layout.tsx but no luck...
importing using '@gluestack-ui/themed' works fine. Any ideas?
Thank you for this rich tutorial. I really enjoyed. however, every one or two minutes, an advertisement showed and it was annoying for a 4h video. I don't know if this is being handled by you or RUclips.
can't get gluestack to install w/ expo 52 :(
Maybe they need to update it 🤔
@ yes! They did. So it works now, but still a little buggy.
Where is the padding around the flatlist card? It’s in the design, but you don’t) I watched it to see how you would make them
What’s the difference between navigating from one page to another using useNavigation versus using Link? I’m not sure when to use each of them. Could you help me?
In case anyone else needs to know this... Use for static navigation like menus or links, as it’s simple and declarative. Use useNavigate for dynamic navigation when logic or events determine the destination programmatically.
@@truszko91 So, if the user logs in and the process is successful, we use useNavigation to navigate them. However, if the user just needs to click a button and go to the next page without any logic involved, we use . Thank you so much, by the way.
@@bberkdinc9971 exactly!
Hi where is the dashboard app video?
hello mate i followe everything about the cards but dont show me the card its say Please pass alt prop to Image component
sorry was the tailwind needed edit somethings to work properly thanks for the awesome tutorial btw :)
Thanks.
You're welcome!
can someone tell me how can we generate an apk once the app is finish? with react expo is impossible for me 😔 5bg app to make an apk nothing works for me
You can build it locally if you have Android Studio setup (docs.expo.dev/guides/local-app-development/) Or you can use EAS to build it in the cloud (docs.expo.dev/build/introduction/)
@@notjustdev I've try both not working after 120m it's stopping to build
FullstackEcommerce\ecommerce-mobile
ode_modules\expo-router/entry.js ▓▓▓▓▓▓▓▓▓▓░░░░░░ 64.6% (437/582)
For some reason this app doesn't run on windows, it will freeze like above. do you know the reason?
Thanks for the tutorial,
But why the project is very poor design and features.
Sounds kind of Quantum 🤫
SUBSCRIBE!
please also do tutorial react native with firebase most campanies use firebase for backend🙏
Solution for the error: failed to fetch
Missing Header
ensure cors response headers are valid blocked
Context:
In (Expo)/api/products.ts, fetching products from (Express)/api
Solution:
In (Express)/api/src/index.ts, add the following code before app.get('/',...):
app.use(function (req, res, next) {
res.header('Access-Control-Allow-Origin', '*');
res.header('Access-Control-Allow-Methods', 'GET,HEAD,OPTIONS,POST,PUT');
res.header('Access-Control-Allow-Headers', 'Origin, X-Requested-With, Content-Type, Accept, Authorization');
next();
});