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 ?