当我刷新我的android模拟器时,View会消失,在我更改组件中的某些内容并保存后再次显示。有没有人知道它为什么会发生。
这是我的代码:
<View style={style.stopWatch}>
<Text style={style.text}>
Some text
</Text>
</View>
style = StyleSheet.create({
stopWatch: {
borderRadius: 100,
width: 100,
height: 100,
backgroundColor: 'black',
alignItems: 'center',
justifyContent: 'center'
},
text: {
color: 'white',
justifyContent: 'center',
},