You can get the exception using Image.network()
with errorBuilder()
named constructor
Here is an example:
Image.network(
'https://example.does.not.exist/image.jpg',
errorBuilder:
(BuildContext context, Object exception, StackTrace? stackTrace) {
// Appropriate logging or analytics, e.g.
// myAnalytics.recordError(
// 'An error occurred loading "https://example.does.not.exist/image.jpg"',
// exception,
// stackTrace,
// );
return Text('e¢');
},
),
Reference Image Widgets errorBuilder Property
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…