delfme

Results 169 comments of delfme

Hello @CaiJingLong did extra tests and this looks weird. I decided to test saving image after downloading a it from the web, using the same code of your example. ```...

On iOS it works only if I set set await `PhotoManager.setIgnorePermissionCheck(false);`

Made another quick test to see if I can save image with a different plugin. Used this one https://pub.dev/packages/gal I can save to gallery ``` await Gal.putImageBytes(image); // instead of...

@CaiJingLong Found the issue, it is not permission. Issue is method `saveImage` which returns null, `saveImageWithPath` works. ``` final entity = await PhotoManager.editor.saveImageWithPath( file.path, title: 'Photo${DateTime.now().millisecondsSinceEpoch}', ); ```

Check out this video https://github.com/flutter/flutter/assets/53510751/ecfe8591-b61d-4192-a571-dc56db649790 Focus on “Fffg” and “G”, you will see a bump. It doesnt occur on every line. Also, as weird as it might sound, HC seems...

> I took a screeenshot of when this happened. It doesn't look like a rendering error exactly, everything is rendering correctly but the text input state has been reset or...

> It is unclear that this isn't a bug in the plugin that you're using for the native text input field. No issue with HC and text is not cleared...

Also, are we really sure that the screenshot with empty textfield means that the text inside textfield is lost? Cant it also be that the entire platform view is not...

We could assign a solid background color to textfield (now it is transparent) and see if it is the text being cleared or the entire textfield disappearing

TLHC https://github.com/flutter/flutter/assets/53510751/4044ece2-db80-4498-a6aa-4f7b6e1eeaf7 TLHC Slow motion, I do not see text disappearing in this test but more like a delay in rendering it. Cant find correct words to describe issue https://github.com/flutter/flutter/assets/53510751/a4529595-35df-4345-936c-0379d95dd686...