mirror of
https://github.com/flutter/samples.git
synced 2025-11-08 22:09:06 +00:00
Flutter 3.29 beta (#2571)
This commit is contained in:
@@ -5,8 +5,9 @@ import 'package:flutter/material.dart';
|
||||
import 'package:flutter_test/flutter_test.dart';
|
||||
|
||||
void main() {
|
||||
testWidgets('Gives correct behavior for all values of contextMenuBuilder',
|
||||
(tester) async {
|
||||
testWidgets('Gives correct behavior for all values of contextMenuBuilder', (
|
||||
tester,
|
||||
) async {
|
||||
await tester.pumpWidget(const MyApp());
|
||||
|
||||
// Navigate to the GlobalSelectionPage example.
|
||||
@@ -28,10 +29,9 @@ void main() {
|
||||
|
||||
// Right click on the plain Text widget.
|
||||
TestGesture gesture = await tester.startGesture(
|
||||
tester.getCenter(find.descendant(
|
||||
of: find.byType(ListView),
|
||||
matching: find.byType(Text),
|
||||
)),
|
||||
tester.getCenter(
|
||||
find.descendant(of: find.byType(ListView), matching: find.byType(Text)),
|
||||
),
|
||||
kind: PointerDeviceKind.mouse,
|
||||
buttons: kSecondaryMouseButton,
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user