-
-
Notifications
You must be signed in to change notification settings - Fork 144
Open
Description
Hey, first of all thanks for this awesome package.
I am getting a strange result on two different emulators with the same code.
Another strange thing is when I remove flexWrap: 'wrap', property then design looks the same in both devices with no issue
Any suggestions on how to solve it?
Here is my code:
const item = {
backgroundColor: 'green',
width: wp('28%'),
height: wp('28%'),
margin: wp('1%'),
}`
render(){ return (
<Fragment>
<View
style={{
backgroundColor: 'red',
flex: 1,
flexDirection: 'row',
margin: wp('5%'),
marginTop: wp('10%'),
flexWrap: 'wrap',
}}
>
<View style={item} />
<View style={item} />
<View style={item} />
</View></Fragment>)
}
imbudhiraja
Metadata
Metadata
Assignees
Labels
No labels

