Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
await widgetTester.tap(find.byType(ElevatedButton));
显示警告:可能小部件实际上不在屏幕上,或者另一个小部件遮挡了它,或者小部件无法接收指针事件。
尝试这个:
await widgetTester.ensureVisible(find.byType(ElevatedButton)); await widgetTester.pumpAndSettle(); await widgetTester.tap(find.byType(ElevatedButton));