14
¿Puedo crear estilos dinámicos en React Native?
Digamos que tengo un componente con un render como este: <View style={jewelStyle}></View> Donde jewelStyle = { borderRadius: 10, backgroundColor: '#FFEFCC', width: 20, height: 20, }, ¿Cómo puedo hacer que el color de fondo sea dinámico y asignado aleatoriamente? He intentado { borderRadius: 10, backgroundColor: getRandomColor(), width: 20, height: 20, }, …
119
css
reactjs
react-native