Alexa_Gal
10/28/2021, 7:33 PMcomposable("Screen.Login.route?email={email})
and when i want to push to that screen like navController.navigate(Screen.Login.route?email=<mailto:user+test@example.com|user+test@example.com>)
in the next screen ill get the email argument like user <mailto:test@example.com|test@example.com>
without the +
but that only happens when i use argumentes like ?foo={bar}
no when i use something like /{bar}
Ian Lake
10/28/2021, 7:36 PMUri.encode
around your email argumentAlexa_Gal
10/28/2021, 7:47 PM?foo={bar}
pattern. thanks for the help 🙂