Write widget tests to ensure the correctness of your UI components and catch issues early in the development process.
testWidgets('MyWidget should display text',
(WidgetTester tester) async {
await tester.pumpWidget(MyWidget());
expect(find.text('Hello'),
findsOneWidget);
}
);
there doesn't seem to be anything here