gpt4 book ai didi

android - 如何在 Flatlist 中使用单选按钮 - React native

转载 作者:行者123 更新时间:2023-11-30 05:11:38 25 4
gpt4 key购买 nike

我想使用 flatlist 创建带有单选按钮的列表,但问题是我可以点击单选按钮,它在 flatlist 中不是未选中的。

这是我的代码

 <FlatList
data={this.state.addressData}
horizontal={false}
extraData={this.state}
showsHorizontalScrollIndicator={false}
renderItem={({ item, index }) => (
<Card containerStyle={{ backgroundColor: GlobalColors.white, marginLeft: 0, marginRight: 0, marginTop: 0, marginBottom: 10, elevation: 2, padding: 0, borderColor: GlobalColors.white }}>

<View style={{ backgroundColor: GlobalColors.white, padding: 15 }}>


<View style={SelectAddressStyle.horizontalChangeAddress}>
<Radio style={{marginRight : 10}} selected = {true}></Radio>
<Text style={SelectAddressStyle.txtAddressUserName}>{""}</Text>
<Text style={SelectAddressStyle.addressType}>{"HOME"}</Text>
</View>
<Text style={SelectAddressStyle.txtAddress}>
{""}
</Text>



</View>
</Card>
)} />

最佳答案

你有:

<Radio style={{marginRight : 10}} selected = {true}></Radio>

所以它不能变成未选中状态。也许尝试传入一个 selected 属性。

关于android - 如何在 Flatlist 中使用单选按钮 - React native,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53632435/

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