我使用react-native-gifted-chat 进行聊天。我想更改时间字体颜色。我按照医生说的改变了它,但它没有改变。我希望两个时间的颜色都是黑色。使用“react-native-gifted-chat”:“^0.16.1”
const renderTime = (props) => {
return (
<Time
{...props}
textStyle={{
left: {
color: 'black',
},
right: {
color: 'black',
},
}}
/>
);
};
Run Code Online (Sandbox Code Playgroud) 活动指示器可以在IOS上正常工作,但不能在android上旋转或设置动画,任何帮助???
<View style{{marginLeft:0,width:60,height:60,borderRadius: 30,justifyContent:"center",alignItems:"center", backgroundColor:'#eee', borderColor:"#fff", borderWidth:1 }}>
<ActivityIndicator size="small" animating={true}/>
</View>
Run Code Online (Sandbox Code Playgroud)