You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey Guys, First of all, thank you for the amazing package. We're having an issue where the noLoadingState parameter of the LinkTokenConfiguration class, does not work. Meaning, even when the parameter is set to true, it will still load.
And here's the result of opening Plaid Link, it still shows the low opacity loading screen and sends our UI backwards. It's not the experience we want to give our users, and it feels a little too clunky for our liking, it also creates overlap with our internal loading indicator.
Anyone had any luck fixing this?
The text was updated successfully, but these errors were encountered:
Thanks for bringing this up, and we appreciate the kind words about the package! 🙏
Just to clarify, this issue is related to the iOS SDK, not the Flutter SDK itself. We know that the noLoadingState parameter not working as expected can impact your user experience, and we’re actively looking into what needs to be done to fix it.
Right now, I can’t give an exact timeline for when this might be resolved, but it’s definitely on our radar. Once we’ve addressed it, we’ll make sure to update the Flutter SDK with the necessary changes and follow up here with more information (or submit a PR to update the iOS SDK version).
In the meantime, there are a couple of workarounds you might consider:
Call create at least 3–5 seconds before you expect the user to open Plaid. This can help preload the session and greatly reduce the chance of users seeing the loading spinner when Plaid is opened. Make sure to still set noLoadingState to true.
Alternatively, you can stick with the SDK’s default loading indicators for now, even though I know it’s not ideal.
We’re sorry for the inconvenience and appreciate your understanding as we work through this.
Gotcha. Thanks for the pointers. Didn't know about create. And yes, please keep us posted on where this falls on the priority roadmap and how me and my team can help push this forward.
Hey Guys, First of all, thank you for the amazing package. We're having an issue where the
noLoadingState
parameter of the LinkTokenConfiguration class, does not work. Meaning, even when the parameter is set totrue
, it will still load.Here's how we're using it:
PlaidLink.open( configuration: LinkTokenConfiguration( noLoadingState: true, token: linkToken, ));
And here's the result of opening Plaid Link, it still shows the low opacity loading screen and sends our UI backwards. It's not the experience we want to give our users, and it feels a little too clunky for our liking, it also creates overlap with our internal loading indicator.
Anyone had any luck fixing this?
The text was updated successfully, but these errors were encountered: