Mangirdas Kazlauskas
Mangirdas Kazlauskas
Any updates on this? After the investigation, it seems that the method that causes the issue is `private String GetMimeType(String url)` in `UploadWorker.java`, specifically - `String extension = MimeTypeMap.getFileExtensionFromUrl(url);`. I...
Thanks for the feedback, I will take a look at this 👍🏻
> You can use flutter fix or dart migrate command to do so. Dart migration is not a problem anymore - the project is already migrated. However, the code base...
Wow, this is amazing, team! Thanks 🙌 Closing the issue, then.
Oh, ok 😞 Keep us updated!
Any plans to merge this any time soon?
I have a similar interesting issue. Tested it on iOS 16.2 simulator and a real iPhone device. When I define the orientations like this: ``` SystemChrome.setPreferredOrientations([ DeviceOrientation.landscapeLeft, DeviceOrientation.landscapeRight, ]); ```...
@darshankawar This is still an issue on iPhone (the one I mentioned above). > Please check below similar / related issues and see if they resonates with your use cases:...
@sanalkv For this, you need to add available app orientations to the `Info.plist` file, like this: ``` UISupportedInterfaceOrientations UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight ``` 👆 In the array, only leave the...
Hi, @lavalampmj. I think it's because the project is not compatible with Flutter 2.0, you should try running it with Flutter v1.22.6 (e.g. using fvm - Flutter Version Manager -...