react native ios view bug

React Native ios problems

here is the bugs

View was rendered with explicitly set width/height but with a 0 flexBasis. (This might be fixed by changing flex: to flexGrow:) View: <RCTShadowView: 0x6080001bc620; viewName: RCTImageView; reactTag: 315; frame: {{0, 37}, {325, 150}}>
the way to solve it is 

 remove 'flex: x' or replace with 'flexGrow: x', x may be 0, 1, or 2 whatever, and it will resolve most problems.