当我点击登录btn然后btn延迟5秒然后仪表板apppeard,我不想要这个延迟...请帮助
这是我的代码
loigin.js
<TouchableOpacity style={styles.btnContainer} onPress={Actions.dashboard}>
<Text style={styles.btn}>LOG IN</Text>
</TouchableOpacity>
Route.js
<Scene
key="dashboard"
component={Dashboard}
title="Dashboard"
/>
<Scene
key="login"
component={Login}
title="Login"
hideNavBar
initial
/>