Use case
We can use in patrol test await $.tester.tapAt(const Offset(0.5, 0.5)); but it does not use pumpAndSettle underneath so we need to add this manually. It will be nice to have all tester. methods in patrol but with settle funcition build in.
Proposal
instead of:
await $.tester.tapAt(const Offset(0.5, 0.5));
We could use:
$.tapAt(Const OffSet(0.5, 0.5),settlePolicy: SettlePolicy.settle)
Use case
We can use in patrol test
await $.tester.tapAt(const Offset(0.5, 0.5));but it does not use pumpAndSettle underneath so we need to add this manually. It will be nice to have all tester. methods in patrol but with settle funcition build in.Proposal
instead of:
await $.tester.tapAt(const Offset(0.5, 0.5));We could use:
$.tapAt(Const OffSet(0.5, 0.5),settlePolicy: SettlePolicy.settle)