Francesco Bussolino

Results 46 comments of Francesco Bussolino

Facing same issue. Even after setting the placeholder the problem persists. This is my configuration ```dart return MaterialApp.router( scrollBehavior: EgoMenuScrollBehavior(), routerDelegate: _appRouter.delegate( placeholder: (context) => Container(color: themeOrangeColor) ), routeInformationParser: _appRouter.defaultRouteParser(),...

I am getting the same error (and getting null response), but the payment method is being saved correctly on Stripe.

Found the problem. Currently the _onRetry function is a void Function, wheras it should be a Future function in order to accept future functions as well. This ```dart final void...

Hi, this package would be perfect for me if it had web support! What is the ETA on this?

I will wait patiently as this picker function in this package is exactly what I need; furthermore, and I can't find any other packages that offer that function :)

Hi, is there a build-in way for creating an overlay? Another option would be to put the MobileScanner inside a Stack and manually create an overlay, but a build in...

Switching to https://pub.dev/packages/flutter_overlay_loader works perfectly.

> I looked more closely at @shadowdogg's answer, and I realized that I didn't understand it at first. So, just for the next guy, I'll make the code below more...

Also looking on how to implement this behavior. Would be nice to be able to show suggestions only onSubmit

I've been waiting for ages. You're probably better off creating it yourself like this: ```dart ... Wrap( children: widget.list.asMap().map( (index, ingredient) => MapEntry(index, _buildChip(index, ingredient)) ).values.toList(), spacing: 6, runSpacing: 3,...