Search Articles — Sudonull

Search Results

From the web

An introduction to widget testing - Flutter

https://docs.flutter.dev/cookbook/testing/widget/introduction

May 5, 2026 · In the introduction to unit testing recipe, you learned how to test Dart classes using the test package. To test widget …

Handle scrolling - Flutter

https://docs.flutter.dev/cookbook/testing/widget/scrolling

Jul 13, 2026 · How to handle scrolling in a widget test. Now, you can write a test. In this example, scroll through the list of items and …

Testing Flutter apps

https://docs.flutter.dev/testing/overview

May 5, 2026 · Testing a widget involves multiple classes and requires a test environment that provides the appropriate widget …

Check app functionality with an integration test - Flutter

https://docs.flutter.dev/testing/integration-tests

Jul 31, 2026 · The integration test file consists of a Dart code file with dependencies on integration_test, flutter_test, and your app's …

Flutter Widget Previewer

https://docs.flutter.dev/tools/widget-previewer

Aug 11, 2026 · Learn how to use the Flutter Widget Previewer to see your widgets render in real-time, separate from your full app.

Test orientation - Flutter

https://docs.flutter.dev/cookbook/testing/widget/orientation

May 5, 2026 · 1. Create an app that updates based on orientation 2. Create an orientation test group 3. Create a portrait orientation …

Widget testing - Flutter

https://docs.flutter.dev/cookbook/testing/widget

May 5, 2026 · A catalog of recipes for adding widget testing to your Flutter app.

Create and style a text field - Flutter

https://docs.flutter.dev/cookbook/forms/text-input

May 5, 2026 · Text fields allow users to type text into an app. They are used to build forms, send messages, create search …

Use the Flutter inspector

https://docs.flutter.dev/tools/devtools/inspector

Aug 18, 2026 · Learn how to use the Flutter inspector to explore a Flutter app's widget tree.

Find widgets - Flutter

https://docs.flutter.dev/cookbook/testing/widget/finders

May 5, 2026 · To locate widgets in a test environment, use the Finder classes. While it's possible to write your own Finder classes, …

Trending Now