pdf_signature/test/features/step/the_user_chooses_undo.dart

10 lines
305 B
Dart

import 'package:flutter/material.dart';
import 'package:flutter_test/flutter_test.dart';
/// Usage: the user chooses undo
Future<void> theUserChoosesUndo(WidgetTester tester) async {
// Tap the undo button
await tester.tap(find.byKey(const Key('btn_canvas_undo')));
await tester.pumpAndSettle();
}