llfbandit / app_links

Android App Links, Deep Links, iOs Universal Links and Custom URL schemes handler for Flutter.
https://pub.dev/packages/app_links
Apache License 2.0
220 stars 81 forks source link

uriLinkStream will convert all characters to lower case on iOS18. #160

Closed lanistor closed 1 month ago

lanistor commented 1 month ago

Tested:

llfbandit commented 1 month ago

Use stringLinkStream if you are sensitive to the case. This is not related to your current platform but to Uri.parse from dart.

lanistor commented 1 month ago

This works, thanks a lot.