Francesco Bussolino
Francesco Bussolino
Using the image library on web to apply the transformations is slow and freezes the UI. Using the following method instead of "cropImageDataWithDartLibrary" takes significantly less time and doesn't freeze...
I can't figure out whether I'm doing something wrong or there is a problem with this null-safe version. I'm getting the following error: ``` E/flutter (13256): [ERROR:flutter/lib/ui/ui_dart_state.cc(186)] Unhandled Exception: type...
When I use grouped choices, the groups are ordered alphabetically. Is it possible to disable this feature? P.s: I believe it is not implemented. I cloned the repository and removed...
I added the ```dart showDataModulesBehindEmbeddedImage ``` attribute to QrPainter. It defaults to true so the behavior doesn't change. If set to false, however, it doesn't paint the dataModules that overlap...
Hi, I am trying to use QrPainter.withQr() to allow users to download an image of the qrcode from my app. Currently there seems to be no way to change the...
I have a TextFormField and am using the FaIcon widget as prefix icon: TextFormField( decoration: InputDecoration( border: InputBorder.none, contentPadding: EdgeInsets.only(top: 14.0), prefixIcon: FaIcon( FontAwesomeIcons.penNib, color: themeOrangeColor, ), ), ) This...
Hi, I'm using the RetryClient() to refresh the access token if expired and then try the request again. However when retrying the request, the old access token is sent and...
I am using the https://pub.dev/packages/loader_overlay package to show a loading overlay during async tasks. So I often have bits of code that look like this: ```dart Future _saveRestaurant() async {...
Hi, this package is amazing! As I understand guarding a Route that is a Tab is still not supported. However I believe that a huge percentage of flutter app use...
Hi, How can I keep the focus on the TagsTextField after submitting a tag? Currently it closes the keyboard every time a tag is submitted, I'd like to keep it...