Alejandro Giubel Hernández Arbelo

Results 26 comments of Alejandro Giubel Hernández Arbelo

I have the same error. I am using workmanager and PhotoManager and I need to process some photos in background and I have this error ``` E/MethodChannel#top.kikt/photo_manager(16516): Failed to handle...

I resolved the issue using `PhotoManager.setIgnorePermissionCheck(true);`. Thank.

@TheLastGimbus I use `PhotoManager.getAssetPathList(onlyAll: true, type: RequestType.image)` in background process with workmanager. This is the only function that I use in workmanager.

Yes. So far it works. I process images in the background using those two libraries. With the application in the foreground, the process works completely to finish but when I...

Ok. I check if other function work and... (drumroll)... it works. I use this method that delete an image with ID = 20873 and execute it (in background) when I...

Same here. Some one know another similar package?. Time ago this package works perfect.

Same issue. Solved adding this `focusNode: FocusNode(),`.

This is my code. I don't really know what is causing the problem but using `focusNode: FocusNode()` solved it. ``` class CreateNewDeparture extends StatelessWidget { const CreateNewDeparture({Key? key}) : super(key:...

Flutter's native ExpansionTile works as expected, it maintains the widget's state. I also tried this https://pub.dev/packages/expandable and it works as expected.