golden_test 0.1.2 golden_test: ^0.1.2 copied to clipboard
A utility Flutter plugin for writing golden tests that streamlines adding golden tests to your project
golden_test_example #
Demonstrates how to use the golden_test plugin.
goldenTest(
name: 'Example',
builder: (_) => Scaffold(
body: Center(
child: Container(
height: 100,
color: Colors.red,
child: const Center(child: Text('Example')),
),
),
),
);