I have drawn a horizontal line like this. However, it appears towards the left side of the screen. I don't want to increase the width. How else can I move it to the center? I tried wrapping it with another view along with alignContent: 'center' etc but it didn't work for me.
<View style={styles.horizontalLine}></View>
horizontalLine: { marginTop: 25, width: '80%', height: 1, //alignContent: 'center', //width: 1, backgroundColor: '#E0E0E0', },