shorben07
shorben07
I had similar issue. When tap on the link and app is running in background then the app correctly is being brought to foreground but navigation does not happen. I...
My proguard is: ``` -keep class androidx.lifecycle.DefaultLifecycleObserver -keep class com.google.android.gms.** { *; } ``` In my case I had issue probably because I have three different packages for deep links...
Here are logs from my app: Debug where everything works correctly: ``` 2024-04-03 15:54:21.763 7795-7795 BranchSDK com.memohq V onActivityPaused, activity = com.memohq.MainActivity@79f40fd 2024-04-03 15:54:22.482 7795-7795 FlutterBranchSDK com.memohq D triggered onActivityStopped...
@RodrigoSMarques > Why did you add the line below? DefaultLifecycleObserver is unrelated to BranchSDK and was added earlier for some other plugin to work correctly. I posted the whole file...
I created a small fluter project to demo the problem with the first install on iOS Simulators https://github.com/shorben07/first_install It takes from 30 to 72 seconds to complete the first remote...
@0maru I can make the contribution and implement web part(although I am a mobile developer) based on approach from the [article](https://itnext.io/flutter-web-oauth-authentication-through-external-window-d890a7ff6463) The article is about Twitch and OAuth 2.0 but...
@0maru After doing more research it turned out that there is another plugin that already supports web https://pub.dev/packages/oauth2_client so, I withdraw my contribution commitment for now
Range selector shows up if double tap on the word
``` class EditLinkRule extends InsertRule { const EditLinkRule(); @override Delta? applyRule( Delta document, int index, { int? len, Object? data, Attribute? attribute, }) { final delta = Delta(); final itr...