vegas-react-native
Version:
A specialized set of basic functions utilities to build React Native applications
27 lines (25 loc) • 423 B
JavaScript
const layout =
{
center:
{
alignItems : 'center',
justifyContent : 'center'
},
column :
{
flex : 1,
flexDirection : 'column'
},
row :
{
flex : 1 ,
flexDirection : 'row'
},
rowWrap :
{
flex : 1 ,
flexDirection : 'row' ,
flexWrap : 'wrap'
}
};
export default layout ;