[somePromise].then(resolve => { alert('Good'); }).catch(reject => { alert('Bad'); }).finally(done => { this.setState({ isLoading: false }); });
setState in finally doesn't work with alert message. Without alert all works correctly.
react-native 0.44.3
react 16.0.0-alpha.6