React Native Props

This Article Part of React Native Tutorial Series want to start from scrach follow below link https://infinitbility.com/react-native/table-of-contents what is props? Props are short for Properties. The simple rule of thumb is props should not be changed. In the programming world we call it “Immutable” or in simple english “Unchangeable”. Props are Unchangeable — Immutable Components receive props from their parent. These props should not be modified inside the component. In React and React Native the data flows in one direction -> From the parent to the child....

January 15, 2021 · 5 min · Infinitbility

React Native State

This Article Part of React Native Tutorial Series want to start from scrach follow below link https://infinitbility.com/react-native/table-of-contents today, we learn to manage to react native state. React Native manage data using state and props. props mean those data, send data to the child component from the parent component but we can discuss props in our next coming tutorial. state we are using state to store data and accessible on the whole file....

January 12, 2021 · 3 min · Infinitbility