Valentin Vignal

Results 94 comments of Valentin Vignal

Hello @incendial, I'm having hard time to reproduced it with a dummy/small repo. I wonder if this is because our project is starting to be quite big. Do you have...

I'm working non it. The issue is that it is happening on my company's repo which is not open source and I cannot share 😕 So I have to manage...

> I think we can add a progress indication of some sort and you'll be able to recheck properly. this could be a good first step yeah

@hnvn I see your commit https://github.com/hnvn/flutter_image_cropper/commit/cd9843a8cc89fd003335036cb3e9b8f9f6ae10f5 May I suggest to do something like that instead? ```dart class ImageCropper { ImageCropper._(); static ImageCropper _instance = ImageCropper._(); static ImageCropper get instance =>...

Hello @imaNNeoFighT , I would like to give this issue a try. Would you have some guidelines / tips? Also, would there be an easier issue than this one I...

I have a pretty similar issue when trying to pick images from the gallery on iOS: ```dart await FilePicker.platform.pickFiles( type: FileType.image, allowMultiple: true, ) ``` ``` Platform exception: PlatformException(file_picker_error, Temporary...

@rrousselGit How would you suggest me to do in this case? I need to have an abstraction, here it is the class `SuperPerson` and I need to be able to...

Hello, I'm facing the same issue running my app on macos. What trouble shoot do you want me to do?

Hello @tarunchauhan97 , I just created an app from scratch and got the issue. I also did a `flutter clean && flutter pub get` and I still get ``` flutter:...

Here is how I changed my code: Previously ```dart StaggeredGridView.count( scrollController: scrollController, ), ``` Now ```dart SingleChildScrollView( scrollController: scrollController, child: StaggeredGrid.count(), ), ```