flutter_glove_box icon indicating copy to clipboard operation
flutter_glove_box copied to clipboard

Various eBay tools for Flutter development

Results 61 flutter_glove_box issues
Sort by recently updated
recently updated
newest added

The current implementation changes some properties for the test window and does not set them back to the default values. This is making some other test to fail as they...

I made a simple project just entered : `flutter create golden` and added FutureBuilder ``` FutureBuilder( future: Future.delayed( const Duration(milliseconds: 150), () => 1), builder: (context, snapshot) { if (snapshot.hasData)...

To deal with developers on different Mac OSes, I'm writing goldens to different directories based on the OS version: `goldens_macos_10.15/` `goldens_macos_11/` With different developers generating these goldens at different times,...

I need to do Golden test for multiple languages and each language has its own font. The test gives unfamiliar symbols instead of the language letters. any idea?

How can I change Scenario's Name color? ![image](https://user-images.githubusercontent.com/2637049/141370904-db907a5a-7a87-4570-80fa-803a448a6eb9.png)

> Caveats Unfortunately, Flutter's font loading support for testing is fairly limited. At the moment, it is only possible to load a single .ttf file for a font family. This...

When doing a golden test on a widget with a `GlobalKey` an exception is thrown when tested on more than one device. Success: ```dart testGoldens('global Keys', (tester) async { final...

I want to test this widget: ```dart class MyApp extends StatefulWidget { const MyApp({Key? key}) : super(key: key); @override State createState() => _MyAppState(); } class _MyAppState extends State { Color...

When running the release build of a Flutter Web App, we didn't expect the dev_dependency `golden_tookit` to be adding a Font dependency. Is this the expected behavior, or could we...