gitextract_qjt8kukw/ ├── .gitignore ├── LICENSE ├── README.md └── recipes/ ├── flutter_driver/ │ ├── how_do_i_find_something/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── lib/ │ │ │ └── main.dart │ │ ├── pubspec.yaml │ │ └── test_driver/ │ │ ├── example.dart │ │ └── example_test.dart │ ├── how_do_i_pop_dialog/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── lib/ │ │ │ └── main.dart │ │ ├── pubspec.yaml │ │ └── test_driver/ │ │ ├── example.dart │ │ └── example_test.dart │ ├── how_do_i_run_a_flutter_driver_test/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── lib/ │ │ │ └── main.dart │ │ ├── pubspec.yaml │ │ └── test_driver/ │ │ ├── example.dart │ │ └── example_test.dart │ ├── how_do_i_run_a_script/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── echo.sh │ │ ├── lib/ │ │ │ └── main.dart │ │ ├── pubspec.yaml │ │ └── test_driver/ │ │ ├── example.dart │ │ └── example_test.dart │ ├── how_do_i_run_multiple_test_files_without_restarting_app/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── lib/ │ │ │ └── main.dart │ │ ├── pubspec.yaml │ │ ├── run_all_tests.sh │ │ └── test_driver/ │ │ ├── start_app.dart │ │ ├── suite1.dart │ │ ├── suite1_test.dart │ │ ├── suite2.dart │ │ └── suite2_test.dart │ └── how_do_i_take_a_screenshot/ │ ├── .gitignore │ ├── README.md │ ├── lib/ │ │ └── main.dart │ ├── pubspec.yaml │ └── test_driver/ │ ├── example.dart │ └── example_test.dart └── flutter_test/ ├── how_do_i_drag_something/ │ ├── .gitignore │ ├── README.md │ ├── lib/ │ │ └── main.dart │ ├── pubspec.yaml │ └── test/ │ └── widget_test.dart ├── how_do_i_find_something/ │ ├── .gitignore │ ├── README.md │ ├── lib/ │ │ └── main.dart │ ├── pubspec.yaml │ └── test/ │ └── widget_test.dart ├── how_do_i_mock_async_http_request/ │ ├── .gitignore │ ├── README.md │ ├── lib/ │ │ └── main.dart │ ├── pubspec.yaml │ └── test/ │ └── widget_test.dart ├── how_do_i_mock_shared_preferences/ │ ├── .gitignore │ ├── README.md │ ├── lib/ │ │ └── main.dart │ ├── pubspec.yaml │ └── test/ │ └── widget_test.dart ├── how_do_i_open_a_drawer/ │ ├── .gitignore │ ├── README.md │ ├── lib/ │ │ └── main.dart │ ├── pubspec.yaml │ └── test/ │ └── widget_test.dart ├── how_do_i_run_a_flutter_test/ │ ├── .gitignore │ ├── README.md │ ├── lib/ │ │ └── main.dart │ ├── pubspec.yaml │ └── test/ │ └── widget_test.dart ├── how_do_i_run_a_script/ │ ├── .gitignore │ ├── README.md │ ├── echo.sh │ ├── lib/ │ │ └── main.dart │ ├── pubspec.yaml │ └── test/ │ └── widget_test.dart ├── how_do_i_send_a_keyboard_action/ │ ├── .gitignore │ ├── README.md │ ├── lib/ │ │ └── main.dart │ ├── pubspec.yaml │ └── test/ │ └── widget_test.dart ├── how_do_i_test_an_animation/ │ ├── .gitignore │ ├── README.md │ ├── lib/ │ │ └── main.dart │ ├── pubspec.yaml │ └── test/ │ └── widget_test.dart ├── how_do_i_test_an_exception/ │ ├── .gitignore │ ├── README.md │ ├── lib/ │ │ └── main.dart │ ├── pubspec.yaml │ └── test/ │ └── widget_test.dart ├── how_do_i_test_routes/ │ ├── .gitignore │ ├── README.md │ ├── lib/ │ │ └── main.dart │ ├── pubspec.yaml │ └── test/ │ └── widget_test.dart └── what_if_i_need_build_context/ ├── .gitignore ├── README.md ├── lib/ │ └── main.dart ├── pubspec.yaml └── test/ └── widget_test.dart