kreativityapps
kreativityapps
The function calls are futures, but they still block the main UI thread causing jank, frozen app. Steps to reproduce the behavior: 1. Load a bigger image as Uint8List. The...
Images are not released from memory. For example taking several screenshots with `captureFromWidget` one after the other severely increases memory usage causing out of memory crash. Solution: Please put `image.dispose();`...
**Describe the bug** Trying to extract text from any pdf on Android 5 and 6 causes StackOverflowError. **To reproduce** Code snippet to reproduce the behaviour: ``` pdfTextStripper.getText(doc) ``` **PDF example**...
Hi, several ANR's in production shown in Play Console and Crashlytics for Flutter Android. Android versions: 9, 10, 11, 12. Can't reproduce it locally, I hope the logs help. ```...
### Version 7.0.2 ### Platforms dart, Android ### Device Model Samsung A21 ### flutter info ```sh [✓] Flutter (Channel stable, 3.7.3, on macOS 13.1 22C65 darwin-arm64, locale en-DE) • Flutter...
## 🐛 Bug Report ### Expected behavior The missing language is downloaded when needed. ### Reproduction steps Try to set a language which is not installed: await flutterTts.setLanguage("hu"); Start speech,...
Fix https://github.com/miguelpruivo/flutter_file_picker/issues/1357 Added `CustomDocumentPickerViewController`, a subclass of `UIDocumentPickerViewController` that overrides the `viewDidDisappear` method, making sure that `documentPickerWasCancelled` is called when no file is selected, even when the bottom sheet is...
Fixes https://github.com/KasemJaffer/receive_sharing_intent/issues/149 Instead of crash `getDataColumn` catches exceptions gracefully. Hopefully also fixes https://github.com/KasemJaffer/receive_sharing_intent/issues/105 Could not compile, so also added the fix for https://github.com/KasemJaffer/receive_sharing_intent/issues/306
# Description Added the possibility to specify a `customReactionPopup`. This can be used instead of emojis when long pressing on a message, for example it can be used to show...
Replaced usage of AlertDialog(...) with AlertDialog.adaptive(...) AlertDialog.adaptive() automatically renders a CupertinoAlertDialog on iOS and a Material AlertDialog on Android. This ensures a platform-consistent user experience with native look & feel.