React Native Props
This Article Part of React Native Tutorial Series want to start from scrach follow below link https://infinitbility.github.io/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....