Max Wölk
Max Wölk
Just also tested with `collectionTypes: ['file']` to get a list of all files but this fails due to another issue that is unrelated to this PR. In the files schema...
Just added PR #286 that should solve this issue by simply extracting images into own nodes and linking them (similar to how JSON/Text is handled but with a constant type).
**For web the solution could be quite simple:** First: request permission to access the camera ```js navigator.mediaDevices.getUserMedia({ video: true, }); ``` Second (after permission is granted - otherwise will only...
Hey @navaronbracke, Sounds great. Let me know if I can support. Got some time and a project where this feature would really help.
Because it seems that this PR has gone stale I took the liberty of changing the requested things: #1162
Hi @danagbemava-nc, Sure. I [cloned the repo](https://github.com/mwoelk/flutterfire) and modified the firebase_core example app to ignore the scripts and added a copy of `https://www.gstatic.com/firebasejs/10.7.2/firebase-app-compat.js` into the example (according to the [docs](https://firebase.google.com/docs/flutter/setup?platform=web#disable-auto)...
I guess it's because the dart implementation expects a `window.firebase_` object that isn't set when just including the script and is otherwise set automatically by the injection script.
When I use the following, the previous errors disappear but instead I alway get a `Service messaging is not available` error. I won't get that error with automatic injection. It...
He @danagbemava-nc , unfortunately the issue is not resolved yet. I wasn't able to import/set-up the external scripts in a way that would work exactly like the default auto-injection logic....
Ok. Guess I found some more information. The problem is that the CDN [script](https://www.gstatic.com/firebasejs/10.8.0/firebase-messaging.js) for firebase-messaging contains an absolute import for the firebase-app from the CDN.: ```js import{registerVersion as e,_registerComponent...