futuristic icon indicating copy to clipboard operation
futuristic copied to clipboard

Makes it possible to safely execute and retry a Future inside a StatelessWidget

Results 7 futuristic issues
Sort by recently updated
recently updated
newest added

Using this library in a project and implemented the changes needed for this to compile under null safety. Figured I would contribute this back...

Now that Flutter and Dart has stable support for Null Safety, it would be nice to see this package migrated to Null Safety.

How to trigger rerun of future function?

trivial but important to test the good cases ``` testWidgets( 'shows dataBuilder after future completes successfully with autostart', (tester) async { final text = '3'; final widget = MaterialApp( home:...

Should that work: ``` Widget build(BuildContext context) => new BlocProvider( bloc: appBloc, child: new LoggingBlocProvider( bloc: loggingBloc, child: Futuristic( autoStart: true, futureBuilder: () => appBloc.initBeforeUIStart(), busyBuilder: (context) => Text('busy1'), onError:...

There is no option for performing refresh operations within the data builder like in errorBuilder. It would be nice to have option to recall the same future or provide future...

I hope I can describe my problem correctly, because it is somehow weird I have a GridView with a few Items shown on screen. A single item is a Column...