Skip to main content

LoadingState

Kind: enum

Used to represent the state of the React Native JavaScript instance

NameValueDescription
Loading0x0The instance is loading the JavaScript bundle and initial instance setup. Calls to run JavaScript functions will be queued to run once the instance is fully loaded.
Loaded0x1The instance is in a ready state. Calls to run JavaScript functions will be run as soon as they are posted to the JavaScript instance.
HasError0x2The instance has hit an error. Calls to run JavaScript functions will not be run.
Unloaded0x3The instance has successfully unloaded. Calls to run JavaScript functions will not be run.

Referenced by