Mehmet Karanlık

Results 9 issues of Mehmet Karanlık

Is it possible to hide mediacontrollers ? So i can use it like instagram stories.

enhancement
new issue

@VB10 - form data sending ability is provided. ```dart class UploadSoundModel extends INetworkModel with IFormDataModel { final FormData? files; UploadSoundModel({ this.files, }); @override UploadSoundModel fromJson(Map json) { return UploadSoundModel( files:...

In my project function below throws exception that i shared below. Due to my conditions setOptions returns null so it takes empty array and throws. ````dart Future cropImage(XFile? file) async...

I would like to learn if its possible to crop gif without losing functionality of it. When i cropped its converted to image i assume.

There is nothing preventing INetworkModel abstract class to have const constructor but its not implemented. So any child class extends can't have const constructor. I suggest we add const constructor...

enhancement

@VB10 Only concrete impelementations of INetworkManager has options field. This should be added to abstract class as well.

enhancement

Need to seperate db and other business independed layer by using melon. https://melos.invertase.dev/

enhancement

onSingleTapUp's argument is corrected and missing clause added

Hello @yakuter i was checking this repo, thanks for sharing your knowledge. I assume mutex locks are used to prevent data race on multi-threaded environment for In-Memory-DB package. I have...