Anton Borries

Results 63 comments of Anton Borries

Hi. Sorry for not responding. I'm quite busy at the moment. Hope to be able to take a look at this soon

Yes sorry!! Will do it after FlutterCon

Does this error still persist?

home_widget on iOS works by using an app group to share data between your app and the widget. I am not sure if an AppExtension is able to retrieve data...

So turns out the issue wasn't the one initially referenced but rather as @dario-digregorio mentioned the issue lays in dart:ui where you cannot capture the canvas while in the background...

It should be possible. Please have a look at this section https://github.com/ABausG/home_widget?tab=readme-ov-file#background-update I believe it should not make a difference if you use Workmanager or FCM to trigger Widget Changes...

Hey Dario! Glad you found your way here. So in principle displaying Images using `Image.asset` should work. I have recently found a similar behaviour in the example I did for...

Hmmm, could you try if try something like the following to make sure the precached ImageProvider is the one used for the widget? ```dart final imgProvider = AssetImage('name'); await precacheImage(imgProvider);...

I think another way could be to add a bit of delay in the capture process. This is for example how the screenshot package handles this. I will provide an...