receive_sharing_intent
receive_sharing_intent copied to clipboard
[iOS] Space character in file name are replace by "%20"
When receiving a share intent on iOS devices, for a file, the value received contain"%20" character instead of space " ".
I'm fixing it with a
final String cleanValue = rawValue.replaceAll("%20", " ");
But it's not very clean.
You can use Uri.decodeFull
the remove all url encoding. (https://api.dart.dev/stable/1.20.1/dart-core/Uri/decodeFull.html)