flutter_svg_test 1.0.2 copy "flutter_svg_test: ^1.0.2" to clipboard
flutter_svg_test: ^1.0.2 copied to clipboard

A testing library which makes it easy to test flutter_svg. Built to be used with the flutter_svg package.

flutter_svg_test #

Testing #

This package provides a set of functions to find images generated by flutter_svg in widget tests.

The methods find elements with the SvgPicture type and compare either the BytesLoader or the configuration of the BytesLoader with the giving test attribute.

Example #

Find by BytesLoader

The following example shows how you can find svgs with the matching SvgAssetLoader.

testWidgets('Finds svg', (WidgetTester widgetTester) async {
 
 final SvgPicture asset = SvgPicture.asset('/test/path/my.svg');
 
 await widgetTester.pumpWidget(asset);
 
 expect(find.svg(asset.bytesLoader), findsOneWidget);
});

Find by svg path

Sometimes it is more convenient instead of instantiate the whole BytesLoader to compare only specific attributes.

The following example shows how you can find svgs with the specified attribute.

testWidgets('asset svg with path', (WidgetTester widgetTester) async {
 const String svgPath = 'test/flutter_logo.svg';
 
 await widgetTester.pumpWidget(SvgPicture.asset(svgPath));
 
 expect(find.svgAssetWithPath(svgPath), findsOneWidget);
});

Commemoration #

This package was originally authored by Dan Field and has been forked here from dnfield/flutter_svg. Dan was a member of the Flutter team at Google from 2018 until his death in 2024. Dan’s impact and contributions to Flutter were immeasurable, and we honor his memory by continuing to publish and maintain this package.

4
likes
150
pub points
88%
popularity

Publisher

verified publisherflutter.dev

A testing library which makes it easy to test flutter_svg. Built to be used with the flutter_svg package.

Repository (GitHub)
View/report issues
Contributing

Topics

#svg #vector-graphics

Documentation

API reference

License

MIT (license)

Dependencies

flutter, flutter_svg, flutter_test

More

Packages that depend on flutter_svg_test