Daniel Griffin
Daniel Griffin
Can confirm this, running `setFieldTouched` immediately after setting the value validates the previous state, running it inside a `setTimeout` with a 1 second delay works correctly
Getting the same with `firebase_performance`: ``` No implementation found for method Trace#stop on channel plugins.flutter.io/firebase_performance MissingPluginException (MissingPluginException(No implementation found for method Trace#stop on channel plugins.flutter.io/firebase_performance)) ``` Any which version this...
`onMessageOpenedApp.listen` has stopped working on both Android & iOS for me at all, using latest stable flutter & `firebase_messaging`.
@Bernardoow wouldn't that just be `cordova.file.externalRootDirectory + "Download/"`? To open the PDF something like [cordova-plugin-file-opener2](https://github.com/pwlin/cordova-plugin-file-opener2)
Hi @ajaysaini95700, I haven't tried it with `externalRootDirectory` so not exactly sure - are you getting a permissions error as well (as I know you need to specify permissions for...
few open issues mentioning this PR/adaptive icon bug (#96, #226), anyone able to take a look? @slightfoot
any fix for this?
hi, sorry about the delay - as i'm planning to do a larger rewrite in the near future, i'm not looking to make any lib/logic enhancements right now unless something...
> Did you see this? > [prescottprue/redux-firestore#176](https://github.com/prescottprue/redux-firestore/issues/176) yep, I've been using `where: ['__name__', '==', ...]` as it's the only working solution currently, but a bit of a hack.
@prescottprue no worries! just tried using `firebase.firestore.FieldPath.documentId()` inside `useFirestoreConnect`'s `where` clause. discovered that `type WhereOptions` expects a `string` as the first argument, while `documentId()` returns a `FieldPath`. using a `toString()`...