Skip to content
Advertisement

React navigation content size too narrow

Hi I am implementing react navigation in a react native app, and I am following the docs on react navigation. And I when I run the code this is the result:Result

My question is how do I make the center content’s width same as the screen. Also, his is my first time using react native expo after switching from reactJS

Code: navigator code:

JavaScript

App.tsx:

JavaScript

Advertisement

Answer

You should be able to set the width by adding percentage dimensions to your style sheet for the desired element. This may require you do away with flex layout however, or use flex in a parent instead.

JavaScript

This should solve for the width problem though.

Advertisement