我想将数据传递到另一个组件,但不是这样。
return (
<View style = {{flex:1}}>
---> <LoginForm profile = {this.state.values}/> // I dont want to send like this
<Animated.View style={{ ...this.props.style, opacity: fadeAnim }} >
{this.props.children}
</Animated.View>
</View>
);
因为我喜欢这个,所以此组件也包括LoginForm。而且我也不想发送导航。因为我不想在屏幕上打开该组件。当我在此屏幕上工作时,我只想将值发送到另一个组件