I want to change backgroundColor in Modal
Now background color Transparent or white
<Modal
animationType="slide"
visible={modalVisible}
onRequestClose={() => {}}
>
<View>
<Text> Hello<Text/>
</View>
</Modal>
CodePudding user response:
<Modal
animationType="slide"
visible={modalVisible}
onRequestClose={() => {}}
>
<View style={{flex:1 , backgroundColor:'red'}}>
<Text> Hello<Text/>
</View>
</Modal>
you can try this and see if it works