Robin Schönau
Robin Schönau
When drawing on a screenshot i would like to be able to use Ctrl+Z in addition to the undo button.
Working with reorderable lists like [reorderables](https://pub.dev/packages/reorderables) or [ReorderableListView](https://api.flutter.dev/flutter/material/ReorderableListView-class.html) there often is a callback like `void onReorder(int oldIndex, int newIndex)` Would it make sense to you to add something like it's...
Not reading any documentation of course and just wanting to kickstart using spot it feels counter intuitive to have `spot()`, creating an instance of spot and an `act`, which does...
It would be nice to be able to scroll to the end of a ScrollView. There is a [scrollUntilVisible](https://api.flutter.dev/flutter/flutter_driver/FlutterDriver/scrollUntilVisible.html) but you need to know and identify the last item. This...
I'd love a function to find widgets on a position on screen. For example `spot().spotWidgetsAtPosition(Offset offset)` returns a full list of all widgets found at that position. `spot().spotWidgetAtPosition(Offset offset)` returns...
### Is there an existing issue for this? - [X] I have searched the existing issues. ### CLI Version 0.0.2+1 ### Project ID c1d0e2fd-dc3b-4894-be02-e114e1d7d4d7 ### Description In a mono repo...
This introduces `loadAppFonts` functionality to `Spot`, primarily for use when `takeScreenshot` involves rendering any Text. - [ ] Before merging, I want to explore utilizing Flutter SDK’s `Roboto` font instead...
Since `https://pub.dev/packages/golden_toolkit` is discontinued. And it's `loadAppFonts` is nearly always needed when taking a screenshot with spot. We should include 'loadAppFonts' into spot. I'll create a PR. Feel free to...
Fixes #125 White space in third-party font names didn't get resolved correctly. I simply adjusted the dependency font test since it covers the same behavior as before + now the...