如何在 React Native 中调整图像大小? (一个简单的问题)

问题描述 投票:0回答:1
react-native tailwind-css nativewind
1个回答
0
投票

一种方法是使用ImageBackground,如下所示:

<ImageBackground
  source={{ uri: imageSrc }}
  resizeMode="cover"
  style={{ flex: 1 }}>
  <Text ...>{title}</Text>
  ...
</ImageBackground>
© www.soinside.com 2019 - 2024. All rights reserved.