[ERROR:flutter/shell/platform/darwin/ios/framework/Source/FlutterViewController.mm(1871)] Timeout waiting for the first frame when launching an URL.
In Android Deeplink working fine, But in IOS its 30-70, 30% chance that Deeplink gonna work and 70% what happening is App open via deeplink, This error appear in terminal in release mode and App dont navigates anywhere just open and stay on Home/Login page where it should be when opens normally. Flutter doctor has no errors.
tried to add these extra configs in info.plist but nothing happened.
<key>FLTTimeoutConfiguration</key>
<dict>
<key>timeout</key>
<real>100</real>
</dict>
<key>FlutterDeepLinkingTimeout</key>
<integer>100000</integer>
<key>FLTFrameTimeout</key>
<integer>30000</integer>
<key>FLTFrameRate</key>
<integer>60</integer>
<key>FLTScenesTimeout</key>
<integer>30000</integer>
Not using any 3rd party Deeplink package, using Flutter own Deeplink configs all paths and congigs are set in OnGenerateRoute
. Seeking for a Good solution Asap.
I just want to get rid of this error in IOS.