We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As per Flutter engine implementation UIApplication:open is suppose to return false if link is not handled by the plugin.
UIApplication:open
false
https://github.com/flutter/engine/blob/138c91c614d742c52aa5432b4cb921f0ff9fdee2/shell/platform/darwin/ios/framework/Source/FlutterPluginAppLifeCycleDelegate.mm#L313-L327
But in home_widget plugin it is always returning true and this blocks plugins like uni_links to get the URL.
true
uni_links
home_widget/ios/Classes/SwiftHomeWidgetPlugin.swift
Lines 134 to 139 in 6559612
I have a fix in #46 that properly returns the flag.
The text was updated successfully, but these errors were encountered:
Fixed by #42 will be in the next release
Sorry, something went wrong.
No branches or pull requests
As per Flutter engine implementation
UIApplication:open
is suppose to returnfalse
if link is not handled by the plugin.https://github.com/flutter/engine/blob/138c91c614d742c52aa5432b4cb921f0ff9fdee2/shell/platform/darwin/ios/framework/Source/FlutterPluginAppLifeCycleDelegate.mm#L313-L327
But in home_widget plugin it is always returning
true
and this blocks plugins likeuni_links
to get the URL.home_widget/ios/Classes/SwiftHomeWidgetPlugin.swift
Lines 134 to 139 in 6559612
I have a fix in #46 that properly returns the flag.
The text was updated successfully, but these errors were encountered: