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
{{ message }}
This repository was archived by the owner on Apr 20, 2023. It is now read-only.
Hello!
Try catch deferred deeplink used different methods, but always returns null and (ConnectState.done, Instance of "DeferredAppLink", null)
FutureBuilder(
future: FacebookApplinks.instance.fetchDeferredAppLink(),
builder: (context, snapshot) {
if (snapshot.hasData) {
return Text('Text $snapshot');
}
return Text('Text no $snapshot');
}),
or
s = (await FacebookApplinks.instance.fetchDeferredAppLink()).toString();
s1 = (await FacebookApplinks.instance.getInitialAppLink()).toString();
await FacebookApplinks.instance.fetchDeferredAppLink().then((value) {
s2 = value.toString();
});
await FacebookApplinks.instance.getInitialAppLink().then((value) {
s3 = value.toString();
});
The text was updated successfully, but these errors were encountered: