You are using Expo, so this behavior is normal.
static navigationOptions = {
title: "Welcome",
headerStyle: { marginTop: 24 },
}
You can define your header like this.
Edit about a year later:
With Expo, you can now use this:
import Constants from 'expo-constants'
static navigationOptions = {
title: "Welcome",
headerStyle: { marginTop: Constants.statusBarHeight },
}
Install it with expo install expo-constants
More informations here in the expo doc