We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Imported from dnfield/flutter_svg#250
Original report by @PoloLacoste on Nov 15, 2019
Hi ! I think it could be interesting to include an error widget when an error happens. For example a network connection error or a parse error.
Like the example below:
final String assetName = "myAsset.svg"; SvgPicture.asset( assetName, errorBuilder: (context, error){ return MyErrorWidget(); } )
The error variable, in the error builder, could be an exception or a message.
Comment by @dnfield on Jan 19, 2020 I'd be happy to review a PR that does this.
Comment by @PoloLacoste on Jan 19, 2020 #277 Here it is !
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Imported from dnfield/flutter_svg#250
Original report by @PoloLacoste on Nov 15, 2019
Hi !
I think it could be interesting to include an error widget when an error happens. For example a network connection error or a parse error.
Like the example below:
The error variable, in the error builder, could be an exception or a message.
Comment by @dnfield on Jan 19, 2020
I'd be happy to review a PR that does this.
Comment by @PoloLacoste on Jan 19, 2020
#277 Here it is !
The text was updated successfully, but these errors were encountered: