我无法通过这个警告摆脱它
警告:列表中的每个子项都应该有一个唯一的“关键”道具。
完整代码如下:
const App = () => {
const userList = [
{
key: 1,
name: "Amit"
},
{
key: 2,
name: "Ajit"
},
{
key: 3,
name: "Avinash"
},
];
return (
<View>
<Text style={{ textAlign: 'center' }}>Hello List</Text>
<ScrollView>
{
userList.map((item) => <Text style={styles.container}>{item.name}</Text>)
}
</ScrollView>
</View>
);
};