Geoffrey Marizy
Geoffrey Marizy
Same problem here. Thanks to mapType, the workaround is easy.
I too encountered this error after upgrading flutter to 3.7. I neither downgraded nor tested in isolation to confirm it's really related to 3.7 upgrade, but in my case wrapping...
@felipecastrosales I first tried `ListView.builder` but it it came with some undesirable scrolling effects. `Scrollable`seems to work just fine (in my case).
I checked, problem is still present
I experience the same error, on Android and iOS alike, and I use app check too. This error might be related: https://github.com/firebase/flutterfire/issues/11491 In our app, we display a retry button...
Mine: ``` rules_version = '2'; service firebase.storage { match /b/{bucket}/o { match /{allPaths=**} { allow write: if request.auth != null; allow read: if true; } } } ``` And I...
I just noticed that I have some "Unverified requests" on App Check reports concerning Firestore. App check is enforced for Firestore, so I guess those unverified request correspond to the...
It happened in production. Occurrence is not systematic, rather rare in fact. I tried a few things but didn't succeeded to reproduce it.
I use a very UI-tweaked version of Crop (brace yourself): ``` class InteractiveCrop extends StatelessWidget { final Uint8List image; final double aspectRatio; final CropController controller; final ValueChanged onCropped; final ValueChanged?...
@chooyan-eng I found a way to reproduce this error; when I try to crop an image from an .heic source on an Android device, this error is systematic.