marginTop为子视图创建问题

时间:2018-04-06 06:19:09

标签: css react-native margin

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

marginTop:'10%' 

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

1 个答案:

答案 0 :(得分:1)

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

的选项

以及我在做什么:

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>
}

试一试