REACT NATIVE STYLE TRICKS
1. Layout are typicallly created with flexbox 2. flex:1 - means take all the available space flexDirection: 'row' - means go from left to right justifyContent, AlignItem decide how the item will allign in the axis( row, column) 3. flexDirection by default is column, so we can put it in row flexDirection to row 4. we can also do flexDirection : row-reverse and column-reverse [ it opposite the elements] 5. after setting the flexDirection , justifyContent, AlignItem,- in the child view we can assign the View with flex 1, for another View we can do flex 3, so first view will take 1 hissa and second one will take 3 hissa 6.