Eugenio Baglieri

Results 7 comments of Eugenio Baglieri

I found only a thread on SO bit without solution. Ma cos’è is a “working” clone of the Example project -- Eugenio B. > Il giorno 11 nov 2018, alle...

This helped me a lot!

> For those who are interested I was able to figure out the following with some help from here https://dzone.com/articles/creating-a-universal-framework-in-xcode-9. > > In a root directory create a script (e.g....

Same problem here, on iOS the save prompt appears on focus lost and never when manually calling `TextInput.finishAutofillContext()` Has someone found a solution?

Same problem here. Our App doesn't support Mac Catalyst. Any update on that?

This comment on the official flutter repository is the solution: https://github.com/flutter/flutter/issues/103977#issuecomment-1140113798

After a lot of experiments, I obtained this simple solution: ```dart class AuthImageProvider extends ImageProvider { AuthImageProvider({ String baseUrl = Constants.baseUrl, required this.path, required this.authenticator, }) : baseUrl = Uri.parse(baseUrl);...