gpt4 book ai didi

reactjs - ListItem 未显示来自 React Native 中 "title"属性的文本

转载 作者:行者123 更新时间:2023-12-04 14:41:27 24 4
gpt4 key购买 nike

我正在使用 ListItem从在 FlatList 中 react 原生元素,代码是

  render() {
return (
<View style={commonStyles.container}>
<List>
<FlatList
data={this.props.questions}
renderItem={({ item }) => (
<ListItem
roundAvatar
title={'nicola'}
/>
)}
/>
</List>
</View>
);
}

问题是文本( 'nicola' )没有呈现

enter image description here

最佳答案

我知道这已经很晚了,但我遇到了同样的问题。

const list = [
{
name: 'Account',
icon: 'av-timer'
},
{
name: 'Category',
icon: 'flight-takeoff'
},
{
name: 'About',
icon: 'av-timer'
}]

... // some code here

<View style={{ flex: 1, justifyContent: 'center', alignItems: 'center' }}>
{
list.map((item, i) => (
<ListItem
key={i}
title={item.name}
leftIcon={{ name: item.icon }}
/>
))
}
</View>

当我使用上面的代码时,只显示了图标,但是当我删除 alignItems Prop 时问题得到了解决。

关于reactjs - ListItem 未显示来自 React Native 中 "title"属性的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48490367/

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