Вот все маршруты.Я хочу закончить заставку, когда я иду на домашний экран.Это возможно?
const Routes = () => (
<Router>
<Scene key = "root">
<Scene key = "splash" component = {SplashScreen} hideNavBar= {true} initial = {true} />
<Scene key = "login" component = {LoginScreen} hideNavBar= {true} />
<Scene key = "home" component = {HomeScreen} title = "Home" />
<Scene key = "signup" component = {SignupScreen} hideNavBar= {true} />
<Scene key = "phoneverification" component = {PhoneCodeVerification} hideNavBar= {true}/>
<Scene key = "signupwithemail" component = {SignupwithEmail} hideNavBar= {true} />
<Scene key = "emailverification" component = {EmailVerification} hideNavBar= {true} />
<Scene key = "success" component = {SuccesScreen} hideNavBar= {true} />
<Scene key = "setupprofile" component = {SetupProfile} hideNavBar= {true}/>
<Scene key = "forgotpassword" component = {ForgotPasswordScreen} hideNavBar= {true} />
<Scene key = "resetcodephone" component = {ResetCodePhoneScreen} hideNavBar= {true} />
<Scene key = "resetcodeemail" component = {ResetCodeEmailScreen} hideNavBar= {true} />
<Scene key = "resetpassword" component = {ResetPasswordScreen} hideNavBar= {true} />
</Scene>
</Router>
)
export default Routes