Open
Description
Hi.
This ticket was first opened on flutter
bug tracker: flutter/flutter#68406
It seems Uri.toString()
convert spaces to +
in subject
and body
for mailto
scheme.
final uri = Uri(
scheme: 'mailto',
path: '[email protected]',
queryParameters: {
'subject': 'Example Subject & Symbols are allowed!'
}
);
print(uri.toString());
// mailto:[email protected]?subject=Example+Subject+%26+Symbols+are+allowed%21
This seems to be a problem, when the link is opened with url_launcher
for example then the subject displayed in the mail app is like this:
Example+Subject+&+Symbols+are+allowed!
For some reason, the app does not handle +
symbols in the uri as expected. However, it works fine if %20
is used instead.
I tested this with url_launcher
v5.7.5, flutter
v1.23.0, dart
v2.10.0, Android v8.0.0 and opening the link with Gmail app.
Should the spaces be automatically converted to %20
instead to ensure portability?