Hello Sir first of all your teaching process is mind blowing . I want to know how we change local language in React Native. Please Sir upload a video regarding this topic.
Export without a default tag are named exports and exports with a default tag are a default export .....and we don't use curly braces if you import the entire react module and we use curly braces if we import the entire react module and specific components of the module
@@alertWolrd In Export you can export more then one component/function with different types name eg- export {name1,name2,...}; but in a module/component has only one export default ,not more then 1 ...eg:- export default name;
jab ham frontend design kr letey han for example image website ha.aur jab backend se jab photos upload krin gey tu kia wo automatically adjust ho jain gey.
1. export without default export const ComponentA = () => { //return some view} import {ComponentA} from './ComponentA'; // use {} to import 2. export with default const ComponentA = () => { //return some view} export default ComponentA; import ComponentA from './ComponentA'; // no {} to import
If you have experience in spring boot then go with it, but if you don't have experience in backend then I'll suggest use a simple backend like, Flask, FastAPI, Or Express, Fastify
Please Support me by Like, Subscribe and Comment
Paytm for donation: 9958194988
Playlist Link ruclips.net/p/PL8p2I9GklV468O2wk-n8Q1KmtMhnHHj4C
sir I'm a MERN stack trainer in Pakistan and i always refer my student to check out your video for more description. I'm a big fan of your knowledge
aap say behtreen tutorials mai abhee tak kisi k naheen dekhay...aap k tutorials say mai apnay office may professional projects karnay lag gya hoon
Shukriya bro❤ yours videos are better than any udemy course, simple and easy
1. Named export & import:
export const Demo= () => {}; //export
import {Demo} from './ComponentName'; //import
OR
export const Demo= () => {}; //export
import {Demo as Demo2} from './ComponentName'; //import
2. Default export & import:
const Demo= () => {};
export default Demo; //export
import Demo from './componentName'; //import
Hello Sir first of all your teaching process is mind blowing . I want to know how we change local language in React Native. Please Sir upload a video regarding this topic.
Export without a default tag are named exports and exports with a default tag are a default export .....and we don't use curly braces if you import the entire react module and we use curly braces if we import the entire react module and specific components of the module
Correct
I can't understand ?
@@alertWolrd In Export you can export more then one component/function with different types name eg- export {name1,name2,...}; but in a module/component has only one export default ,not more then 1 ...eg:- export default name;
can't understand, pls elaborate more.
love u bro boht helpful video ha yr plzz styling b component m krwana btao
MindBlowing Lecture
very good
Really Helpful ❤
Amazing tutorial sir
when Text and View are imported from react-native that is named import and when company data imported from component it is a default import
Fantastic tutorial anil bro love from pakistan
If we want to import multiple components we use the component name inside curly braces, same in the export thing.
Level✅
When will next video on react-native arrive?
Sir Esme ye or btavo ki eski value ko chang kese kre kaha kaha use kre usme kuch bhi chang kar skte h
Normal exports:
contain multiple value to export
default exports:
contain only one "main" value to export
Helpful for beginners
kya google ki language golang bhi components based h?
jab ham frontend design kr letey han for example image website ha.aur jab backend se jab photos upload krin gey tu kia wo automatically adjust ho jain gey.
sir react sikhne se pehle hame aur kon kon si chize aani compulsory hai?
js
how should we gave line between userData component and companydata
Sir kisi aap ke 5 -6 clone banavo or step by step btavo tab mja aayega sikhne ko Esme to koi mja hi nahi
React Native templates what are recommended sites ?
When will you start navigation please 🙏
Soon
Sir aap js file me bata rahe ho but React Native me to default TSX define kare wala hai ?
Wonderful lecture 👌
Thanks a lot
Without page navigation ke ak file se dosri file data agaya 😮 ???
Brother Cards ko flatlist use krte howe kaise main screen pe layngy
Thanks sir 🙂
Most welcome
Thank you so much
You're most welcome
thanks
Hello bhai why r u making new series in react native?? Any diffrence
This is in English language
@@codestepbystep ohk
Chin Tapak Dum Dum
thank you
You're welcome
1. export without default
export const ComponentA = () => { //return some view}
import {ComponentA} from './ComponentA'; // use {} to import
2. export with default
const ComponentA = () => { //return some view}
export default ComponentA;
import ComponentA from './ComponentA'; // no {} to import
Is it a good idea or practice to use Spring boot as backend for React Native apps?
If you have experience in spring boot then go with it, but if you don't have experience in backend then I'll suggest use a simple backend like, Flask, FastAPI, Or Express, Fastify
Yes, you can
Done
Hello Sir Thank You For This Topic
Most welcome
1. Named export & import:
export const Demo= () => {}; //export
import {Demo} from './ComponentName'; //import
OR
export const Demo= () => {}; //export
import {Demo as Demo2} from './ComponentName'; //import
2. Default export & import:
const Demo= () => {};
export default Demo; //export
import Demo from './component Name'; //import