flutter_glove_box
flutter_glove_box copied to clipboard
Various eBay tools for Flutter development
I am posting this in the hope that someone else has experienced this issue as has an idea of what could be causing it. For apparently no reason, sometimes one...
## Description Introduce support for overriding `TargetPlatform` using the `debugDefaultTargetPlatformOverride`. ## Proposal Introduce a non-required `platform`(`TargetPlatform`) property in `Device`.
By default google_font is stored in project root dir `google_fonts` but the GoldenToolkit is always loading the font from `assets/fonts `. When using the `google_fonts` it is not required to...
When `SemanticsDebugger` is used with a Scrollable, the semantics boxes are partially displayed : The golden should be like this : The fix only add a few pumps on `screenMatchesGolden`...
https://dart.dev/guides/language/effective-dart/documentation
Hi, thank you for publishing this package! It is so useful for us! I found a subtle need. `pumpDeviceBuilder` does not have `textScaleSize` argument, so I added it!
Let's say, we'd like to display draggable bottom sheet, which height is 200. It's snaps are 0 (closed) and 1 (fully opened). When we wrote such code and run on...
``` class RootScreen extends StatelessWidget { const RootScreen({Key? key}) : super(key: key); @override Widget build(BuildContext context) { return Scaffold( body: Column( mainAxisAlignment: MainAxisAlignment.center, crossAxisAlignment: CrossAxisAlignment.center, children: [ Center( child: Padding(...
Hi, would like to know if there have been any git performance implications on storing golden images within the repository? Is there a way to store goldens within git LFS?...
In the examples, page object examples has errors: ```dart final titleFinder = find.descendant( of: find.descendant( of: find.byType(MyApp), matching: find.byType(MyHomePage), ), matching: find.byKey(MyHomePage.titleKey), ); final messageFinder = find.descendant( of: find.descendant( of:...