When writing a component, I suddenly got a very strange error in my IOS simulator: \"cannot adjust current top of stack beyond available views\"
Here is my code:
Okay, so it turns out this happens in React-Native when you misspell the component name. My imported class, Separator should have been spelled Seperator and my linter and the build system did not catch the error. Apparently if you try to use an object that is undefined in React-native, this is the error you get!