Reputation: 2302
So I've opened up my react-native app in Expo today (using the iOS simulator) and I am creating by what looks like a debugging overlay.
I don't need this and it's blocking some of the UI for testing.
How does one turn it off?
Upvotes: 19
Views: 25274
Reputation: 544
You can simply reload the app through expo terminal, it will also works for you. Easy and simple.
Upvotes: 0
Reputation: 141
First you need to open Debug Menu ,go to: Device -> Shake or ^+⌘+Z then inside debugger menu press Hide inspector
Upvotes: 14
Reputation: 10451
You have the Element Inspector open. To toggle it off do either:
⌘+D
if you are in the simulatorThis should open up the debugging menu. You can then click on Toggle Element Inspector
to close it.
Upvotes: 57