Osman Saral

Results 24 issues of Osman Saral

I want to extend your layout and change some functionality, but many of the functions are private. I want to override `moveLayoutToPosition` and maybe some other functions. What i'm trying...

Please check this issue. https://github.com/tonymillion/Reachability/issues/74

I'm using Alamofire to download a file and show the progress using `SVProgressHUD.showProgress` ``` Alamofire.download(.GET, "https://httpbin.org/stream/100", destination: destination) .progress { bytesRead, totalBytesRead, totalBytesExpectedToRead in dispatch_async(dispatch_get_main_queue()) { let percentage = Float(totalBytesRead)...

bug
waiting

Is it possible to make parameters optional? Currently I'm using like this: ``` factory { (a: Param?) -> Foo( a ?: get() ) } val foo: Foo by inject {...

question

![Screen Shot 2021-01-12 at 15 10 19](https://user-images.githubusercontent.com/781453/104313245-cfc6f300-54e8-11eb-8a71-a407dcf4e762.png) While custom Chrome, Android Studio and Postman icons have great resolution, the other icons look bad. I believe many icons have this problem....

I override `PagerAdapter.getPageWidth`: ``` @Override public float getPageWidth(int position) { return 0.5f; } ```

enhancement

I use `use_frameworks!` in my podfile. But xcode complains with `EZAudioiOS.m`, `EZAudioOSX.m` files What I did to solve this issue was modifying these files and replace the line with `#import...

``` let attributes = [H1:[NSFontAttributeName:font], H1:[NSForegroundColorAttributeName:color]] ``` this doesn't work. "Type NSString does not confrom to protocol 'Hashable' "

I'm sure this is not the perfect way to do this. Maybe a block mechanism should be implemented. But this works too. No offence taken if you don't merge this....

I init the bubble menu with a zero rect and add some constraints to it. But `_finishCollapse` sets the frame to zero rect again.