How can I pass a `String argument` having spaces ...
# compose
s
How can I pass a
String argument
having spaces or newline escape sequence from 1
destination
to another ? I am using
navigation compose
currently it breaks if I try to do it according to documentation ? here the destination
NEXT/${argument}
breaks if argument string has space in it ?
i
Uri.encode
💯 2
Note the reply that specifically calls out that Navigation will automatically decode your string, so you don't need to worry about that side
K 1
👍 1
s
Awesome, thanks