React native flexbox

evansifyke

Melbite blogging Platform

Posted on July 9, 2022

React native flexbox

Intro

Today is actually a day i enjoyed. I gained the knowledge on flexbox in react native. according to the documentation flex defines how items are going to fill over available space along main axis. In react native,the main axis is the column.

MAIN - flex:1
   item-1:flex-1
   item-2:flex-2
   item-3:flex-3

1+2+3=6
item-1 - 1/6
item-2 - 2/6
item-3 - 3/6

Enter fullscreen mode Exit fullscreen mode
  • flexDirection - column,row,row-reverse
  • layoutDirection - LTR,RTL
  • justifyContent - align along main axis - flex-start,flex-end,center
  • alignItems - along cross axis.
  • alignSelf - individual item.
  • alignContent - flexWrap must be present. defines distribution along cross-axis.
  • flexWrap
  • flexBasis - axis independ way of providing the size of an item. if direction=column,height else width.
  • flexGrow - how item grows in relation to siblings. If 2,grows 2 times larger than siblings.
  • flexShrink

position

position : absolute | relative.

size

width|height:'100| "10%" | auto'

Article originally published at melbite.com/react-native-flexbox

Check more articles just like this on https://melbite.com

💖 💪 🙅 🚩
evansifyke
Melbite blogging Platform

Posted on July 9, 2022

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related

React Native Best Practices
reactnative React Native Best Practices

September 14, 2024

React native flexbox
reactnative React native flexbox

July 9, 2022