说我有一个带有这样的渲染的组件:
<View style={jewelStyle}></View>
其中jewelStyle =
{
borderRadius: 10,
backgroundColor: '#FFEFCC',
width: 20,
height: 20,
},
如何使背景颜色动态并随机分配?我试过了
{
borderRadius: 10,
backgroundColor: getRandomColor(),
width: 20,
height: 20,
},
但这使View的所有实例具有相同的颜色,我希望每个实例都是唯一的。
有小费吗?
这是对我有用的东西:
For some reason, this was the only way that mine would update properly.