I've directly loaded the PasswordRecoveryScreen found in exportAPIComponents directory. It seemed to be working just fine until I clicked on "Choose recovery question". The recovery questions do not load - it's just a blank screen. What am I missing?
"edge-core-js": "0.16.4",
"edge-login-ui-rn": "^0.5.34",
import { PasswordRecoveryScreen } from 'edge-login-ui-rn';
render () { return ( <ScrollView style={styles.scrollview}> <View style={{ flex: 1 }}> <PasswordRecoveryScreen accountObject={this.props.edgeAccount} context={this.props.edgeContext} onComplete={() => {}} onCancel={() => {}} /> </View> </ScrollView> ); }


I've directly loaded the PasswordRecoveryScreen found in exportAPIComponents directory. It seemed to be working just fine until I clicked on "Choose recovery question". The recovery questions do not load - it's just a blank screen. What am I missing?
"edge-core-js": "0.16.4",
"edge-login-ui-rn": "^0.5.34",
import { PasswordRecoveryScreen } from 'edge-login-ui-rn';render () { return ( <ScrollView style={styles.scrollview}> <View style={{ flex: 1 }}> <PasswordRecoveryScreen accountObject={this.props.edgeAccount} context={this.props.edgeContext} onComplete={() => {}} onCancel={() => {}} /> </View> </ScrollView> ); }