react native flex direction
Generally in the excel sheet..we have rows like below Row1 Row2 Row3 and columns like column1 | column2 | column3 But why in react native when using flexDirection: 'column' the box's/text are defined as flexcolumn1 flexcolumn2 flexcolumn3 and when using flexDirection: 'row' the box's/text are defined as flexrow1 | flexrow2 | flexrow3 i find this weird and getting confused... is this just standard difference in react native or there is different concept behind this ?
It is more to do with Flexbox layout specification. https://www.w3.org/TR/css-flexbox-1/#flex-direction-property Think of it as a container and how the items are placed/flows inside the container. If the direction is row, the items inside it flow in the horizontal direction. If the direction is column, the items inside it flow in the vertical direction.
I think it is meant like this: column1_cell1 column1_cell2 column1_cell3 row1_cell1, row1_cell2, row1_ce...