I have a react native app, right now when I make changes to it hot-reloading is triggered but the changes do not show up in the app. E.g. changing a background color from green to white in a stylesheet causes app to say "Hot Reloading" but then the color stays white. Fully reloading the app will then show the green background.
Things I have tried:
Setting root component to a class.
Trying to set MAX_WAIT_TIME (did not work due to solution being outdated)
Installing Babel Functional HMR
Running simulator via Xcode and react-native run-ios.
Running with only hot-reload, both hot-reload and live-reload, only live-reload. With and without remote-debugging.
System:
MacOS: 10.13.2
React-Native: 0.51.0
React-Native-Cli: 2.0.1
Xcode (for running the simulator): 9.2
What is going wrong here? How can I get hot-reloading to work?
EDIT:
Looks like this is an bug. Keeping this question open incase someone has a workaround.