lemmerel

Results 6 comments of lemmerel

Thank you for your quick reply, @dnfield. ``` @override Future prepareMessage(BuildContext? context) { try { return httpGet(url, headers: headers); } catch (HttpException) { throw HttpException; } } ``` Let me...

``` Widget build(BuildContext context) { var res; try { res = SvgPicture.network(url, color: color, width: width, height: height, placeholderBuilder: placeholderBuilder); } on HttpException { res = Container(); } return res;...

I, and I'm sure all of your other very grateful users, would really appreciate it if you did that.

Ah my bad! Thank you so much for your work :) On Mon, 10 Apr 2023 at 18:48, Dan Field ***@***.***> wrote: > This has been waiting on dnfield/vector_graphics#196 >...