Elshad Yarmetov
Elshad Yarmetov
@kalmicka ```cell.stepper.value = count``` Setting value to stepper programmatically also fire ```.ValueChanged``` event. Maybe you set value to stepper somewhere in ```cellForRowAt```
@giantramen after adding `showAnimatedSkeleton` to `prepareSkeleton` closure bug fixed (I tested on iOS 11) ``` collectionView.prepareSkeleton { _ in self.collectionView.showAnimatedSkeleton(usingColor: .gray, animation: nil) } ```
@chili-ios @ubersexual Below code fixes the problem `otpField.textColor = UIColor.black.alpha(0.6)` `otpField.textColor = .clear` In source code we can see that first time when we set color we also set `label`...
List is UITableView. There is not UICollectionView alternative for SwiftUI. And i think there will be always performance problem with waterfall grid, because to define frame of 10_000th cell you...
@japanese-goblinn @norbdev @chanuuuu https://github.com/Elshad/XLPagerTabStrip.git Use .branch("master"), not version
https://github.com/xmartlabs/XLPagerTabStrip/issues/771#issuecomment-702104377
@gkmrakesh @mjarvis @DivineDominion Hi all! This is my solution for multiple states subscribe: ```swift protocol HasAccountState { var accountState: AccountState { get } } protocol HasHomeState { var homeState: HomeState...
@danielmartinprieto I misunderstood how subscription works. Your solution is simple and the best. I think your must add this solution to the Readme. Thanks!