我有一个问题。如何在login
函数中调用Actions.Home()
函数。 Actions.home()
是react-native-router-flux
的动作,应该更改为另一个场景,这效果很好,但我不能在登录功能中称其为
我环顾四周,没有发现任何内容。是不可能的还是我只是错过了一些明显的东西。
async login(email, pass) {
email = this.state.email,
pass = this.state.password
if(email != '' && pass != '')
{
try {
await this.props.firebase.auth()
.signInWithEmailAndPassword(email, pass);
//this.props.navigator.push({ screen: 'Chat' });
Actions.home();
console.log("Logged In!");
} catch (error) {
console.log(error.toString())
}
}
else if (true) {
this.popup.alert('The Input fields havent been properly filled in');
}
}
您是否在顶部导入它?
import {Actions} from 'react-native-router-flux'