ABausG / home_widget

Flutter Package for Easier Creation of Home Screen Widgets
760 stars 205 forks source link

Update ImageView #34

Closed roly151 closed 3 years ago

roly151 commented 3 years ago

Is it possible to update an ImageView in the widget from Flutter assets? I have a weather app and looking to update the weather forecast icon on the widget, but I'm struggling to figure out how to do it. I can update a resource file, but I'd prefer not to have to have two copies. I'm only a beginner, so using this to learn. Any help would be appreciated. Thanks.

ABausG commented 3 years ago

You could encode the image in flutter to base64 and send that as data to the widget where you then decode it from base64 back to a image

roly151 commented 3 years ago

Perfect - thank you, that worked.