The Animated Login View provides a unique visual appearance for the Login, Register pages. On successful login there will be shown an animation opening the background for the content (in most cases some sort of dashboard view).
In case you're using redux you might trigger the success animation onComponentWillReceiveProps based on state change like:
// isAuthenticated get passed in eg. via redux state
componentWillReceiveProps({ isAuthenticated }) {
const { navigation } = this.props;
if (isAuthenticated) this.loginView && this.loginView.animate();
}
Usage on pages without animations
For using just the background and look & feel without the need of playing the animation there is the LoginAreaView
Animation playing on successful login, registration