Component won't render within NavigatorIOS - React Native Component won't render within NavigatorIOS - React Native ios ios

Component won't render within NavigatorIOS - React Native


I had a similar problem. I added the following to my Stylesheet:

...wrapper: {  flex: 1,}...

and then gave the NavigatorIOS component the wrapper style. That fixed the issue.


Add the container style to NavigatorIOS, it needs to be flex:1 to show the child component properly ( I had the same issue).


I ran into the same issue, my mistake was in the styles :

var styles = StyleSheet.create({  container: {    flex: 1,    justifyContent: 'center',    alignItems: 'center',    backgroundColor: '#F5FCFF',  }});

I had to remove justifyContent and alignItems from there. Problem solved for me.