marginTop 为子视图创建问题

marginTop create problems for subview

我有一个视图,其中有其他图片。当我给

marginTop:'10%' 

查看子视图图像未显示在该视图中。 任何解决方案

在 React-Native 中,我们有一个名为 Dimensions ()

的选项

这就是我所做的:

import Dimensions from 'Dimensions';
[...]

const DeviceWidth = Dimensions.get('window').width;
class YourClass extends React.Component {
  //render and return
  //DeviceWidth*0.9 = 90%
  <View style={{marginTop: DeviceWidth*0.1}}></View>
}

试试看