gpt4 book ai didi

javascript - 警告 : Failed prop type: Invalid props. 样式键 'resizeMode' 提供给 'RCTView'

转载 作者:行者123 更新时间:2023-11-29 11:02:13 27 4
gpt4 key购买 nike

我正在使用 react-native-elements,我收到了两个相同的警告,一个针对 View,一个针对 RCTView。

当我用其他东西(只是一个简单的 View )替换 Tile 时,一切正常。

警告如下:

Warning: Failed prop type: Invalid props.style key 'resizeMode' supplied to 'RCTView'

Warning: Failed prop type: Invalid props.style key 'resizeMode' supplied to 'View'

这是有问题的代码:

 return (

<ScrollView>
{events.map((event) => (
<Tile
key={event.event_id}
imageSrc={{ uri: event.picture.large }}
title={`${event.title.toUpperCase()}`}
onPress={() => this.onLearnMoreEvent(event)}
contentContainerStyle={{height: 80}}
>
<View style={{flex: 1, flexDirection: 'row', justifyContent: 'space-between'}}>
<Text>{`${event.location.city}, ${event.start_date} `}</Text>
<Text>Music</Text>
</View>
</Tile>

))}


</ScrollView>
);

最佳答案

找到的解决方案:

编辑

node_modules/react-native-elements/src/tile/Tile.js

删除

resizeMode: 'cover'

来自:

  imageContainer: {
alignItems: 'center',
justifyContent: 'center',
resizeMode: 'cover',
backgroundColor: '#ffffff',
flex: 2,
},

关于javascript - 警告 : Failed prop type: Invalid props. 样式键 'resizeMode' 提供给 'RCTView',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45212514/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com