0

我正在使用 React Native 中的 ImageBackground 并且正在使用背景。我想使用背景的大小来设置元素的大小。

<ImageBackground source={require("../images/Image.png")}>
  <Text>Hello World!</Text>
</ImageBackground>

谢谢!

4

1 回答 1

0

定义height你的ImageBackground

<ImageBackground style={{height: 300}} source={require("../images/Image.png")}>
  <Text>Hello World!</Text>
</ImageBackground>
于 2020-04-27T17:18:47.823 回答