react native remove header border
Whenever you create your react native app, sometimes you will get double border appearing on your page. To get rid of those you can using the following styling.
static navigationOptions = {
title: 'About', headerStyle: {
elevation: 0,
shadowOpacity: 0
}
Comments