Pascal Welsch

Results 69 issues of Pascal Welsch

Thanks for creating this awesome tool! I used https://github.com/hcoles/pitest a lot in Java and I'm happy to see a similar tool for Dart. So far it is working, but the...

Parents can't be negated yet, ```dart testWidgets('negate parent', (tester) async { await tester.pumpWidget( MaterialApp( home: Scaffold( body: ListView(), ), ), ); spot().existsOnce(); spot().withParent(spot()).existsOnce(); // negates do not work yet spot().withParent(spot().atMost(0)).doesNotExist();...

Currently, act.tap() taps the center of the RenderObject. But `RenderParagraph` can give the exact location of the text and there should be clicked, allowing TextSpans with gesture recognizers. ```dart Offset...

enhancement

Sometimes I want to assert multiple widgets with the same condition. e.g. when building a form. I could write it multi-line, but it might be useful to assert all at...

enhancement

When taking a screenshot on iOS, while inside a `TextField`, the keyboard doesn't close automatically. This prevents me from seeing the colors to draw on the screenshot ![simulator_screenshot_9533C088-F372-4492-A9B1-F691AF264694](https://github.com/user-attachments/assets/ac022bdb-1180-4ea1-af0d-d6e944ebc257)

bug

I hava a `SheetPage` with a `SingleChildScrollView` on macos. Actual: When I'm at the top, and drag down using my finger (overscroll), nothing happens. When I'm at the top, and...

PR https://github.com/flutter/flutter/pull/154752 adds a new parameter to the `toStringDeep` method in [3.27.0-0.0.pre](https://github.com/flutter/flutter/releases/tag/3.27.0-0.0.pre) ```diff String toStringDeep({ String prefixLineOne = '', String? prefixOtherLines, DiagnosticLevel minLevel = DiagnosticLevel.debug, + int wrapWidth = 65,...

c: regression
framework
has reproducible steps
P2
team-framework
triaged-framework
found in release: 3.27

Reverts `toStringDeep()` change introduced in https://github.com/flutter/flutter/pull/154752 Fixes https://github.com/flutter/flutter/issues/157802 ## Pre-launch Checklist - [x] I read the [Contributor Guide] and followed the process outlined there for submitting PRs. - [x] I...

framework