5

Is there any way in flutter integration test keeping wait until a widget gets loaded completely?

Like waiting until the home page is loaded after finishing the splash screen?

Jagadeesh
  • 358
  • 5
  • 17

1 Answers1

3

You can use await tester.pumpAndSettle(), it awaits every animation to end before going to the next step. For more info you can look at the docs in this link.

Kennedypz
  • 452
  • 4
  • 11