How to combine PrecacheImage with MemoryImage in Flutter

As already stated in many posts precacheImage (and any other Network Image resource loaders, i.e. NetworkImageWithRetry) throws an exception on 404 URL not found error. To be able to load an image and treat the exception if the resource is not found I build the Image widget with a method that returns a MemoryImage: And … Read more

How do you use a TextPainter to draw text?

I found the answer as I was typing up this question but I’ve been wrestling with it for a while now, so posting in case it helps anyone else. What solved it was changing the TextSpan line to: TextSpan span = new TextSpan(style: new TextStyle(color: Colors.grey[600]), text: ‘Yrfc’); Apparently it was either drawing the text … Read more