Building an Ecommerce App with React Native, Expo and Gluestack

  Рет қаралды 40,777

notJust․dev

notJust․dev

Күн бұрын

Пікірлер: 45
@throwawayaccount5464
@throwawayaccount5464 23 күн бұрын
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
@notjustdev
@notjustdev 23 күн бұрын
Glad I could help! Hope you manage to learn even more🙌🙌
@Memesforev99
@Memesforev99 Ай бұрын
I Accidently felt asleep and left a yt video playing now im here 🤣🤣🤣
@notjustdev
@notjustdev 23 күн бұрын
Welcome!😁🙌
@mdalmamunit427
@mdalmamunit427 Ай бұрын
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 😊
@masetenicholas4520
@masetenicholas4520 10 күн бұрын
Thank you very much bro, God bless you with wealth.
@mohammadakradi8289
@mohammadakradi8289 12 күн бұрын
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 KZbin.
@АлександрСанин-н3ъ
@АлександрСанин-н3ъ Ай бұрын
Do you have some tutorial where show implementation reCAPTCHA Validation to React Native App?
@gabrielpaez321
@gabrielpaez321 Ай бұрын
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
@matheusklug7712
@matheusklug7712 Ай бұрын
with me too. I chose gluestack to develop my college project and now it's not working
@chamidugihan2782
@chamidugihan2782 Ай бұрын
me too
@chamidugihan2782
@chamidugihan2782 13 күн бұрын
@@anumm1560 no bro
@abdulmateen7316
@abdulmateen7316 11 күн бұрын
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
@abdulmateen7316
@abdulmateen7316 11 күн бұрын
Allhumdulillah, My issue has been fixed.
@mrfrankieg
@mrfrankieg 8 күн бұрын
can't get gluestack to install w/ expo 52 :(
@notjustdev
@notjustdev 16 минут бұрын
Maybe they need to update it 🤔
@mrfrankieg
@mrfrankieg 13 минут бұрын
@ yes! They did. So it works now, but still a little buggy.
@bberkdinc9971
@bberkdinc9971 29 күн бұрын
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?
@ekalrozhan3432
@ekalrozhan3432 Ай бұрын
Wheres the payment gateway part
@r2worksee
@r2worksee 5 күн бұрын
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.
@AudiRSQ
@AudiRSQ 6 күн бұрын
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?
@SatoshiNakamono
@SatoshiNakamono 23 күн бұрын
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"
@duykhanhnguyen9274
@duykhanhnguyen9274 Ай бұрын
maybe i miss something, but how to set a component to display first when open a app?
@notjustdev
@notjustdev Ай бұрын
With Expo router, the initial screen that it will render is the `app/index.tsx`
@roshandev8167
@roshandev8167 Ай бұрын
Hi where is the dashboard app video?
@getrogetro7509
@getrogetro7509 26 күн бұрын
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
@kouradev
@kouradev 20 күн бұрын
Thanks for the tutorial, But why the project is very poor design and features.
@DineensGarden
@DineensGarden 23 күн бұрын
Sounds kind of Quantum 🤫
@nikosdimou7291
@nikosdimou7291 Ай бұрын
hello mate i followe everything about the cards but dont show me the card its say Please pass alt prop to Image component
@nikosdimou7291
@nikosdimou7291 Ай бұрын
sorry was the tailwind needed edit somethings to work properly thanks for the awesome tutorial btw :)
@AresAres-qw5xf
@AresAres-qw5xf Ай бұрын
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
@notjustdev
@notjustdev Ай бұрын
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/)
@AresAres-qw5xf
@AresAres-qw5xf Ай бұрын
@@notjustdev I've try both not working after 120m it's stopping to build
@HenokGebresenbet
@HenokGebresenbet Ай бұрын
please also do tutorial react native with firebase most campanies use firebase for backend🙏
@SatoshiNakamono
@SatoshiNakamono 23 күн бұрын
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(); });
This is the ONLY course you'll ever need to MASTER React Native
48:53
Build a Local First Trello Clone with React Native & Realm
3:59:20
notJust․dev
Рет қаралды 112 М.
FOREVER BUNNY
00:14
Natan por Aí
Рет қаралды 30 МЛН
I Built a $4589 Website in Minutes with Bolt.new and Cursor AI!
34:55
The Metaverse Guy
Рет қаралды 7 М.
Building a Headspace Clone with React Native, Expo and RevenueCat
3:52:48
React Native for Beginners tutorial
22:45
Dave Gray
Рет қаралды 23 М.
Tailwind is going Mobile
13:02
Simon Grimm
Рет қаралды 30 М.
Master React JS in easy way
12:18
Nova Designs
Рет қаралды 125 М.
Building a LinkedIn clone with React Native and Stepzen
3:59:46
notJust․dev
Рет қаралды 44 М.
FOREVER BUNNY
00:14
Natan por Aí
Рет қаралды 30 МЛН