(Alfred)

Results 13 comments of (Alfred)

I also face other compiler errors: - `EaseOutBack` in [ChartAnimationEasing.swift](https://github.com/danielgindi/Charts/blob/master/Source/Charts/Animation/ChartAnimationEasing.swift) This fix worked for me https://github.com/danielgindi/Charts/pull/4836 ```swift internal static let EaseOutBack = { (elapsed: TimeInterval, duration: TimeInterval) -> Double in...

My idea is that we can recursive to get parent viewcontroller from a UIView: ```swift extension UIView { func findViewController() -> UIViewController? { if let nextResponder = self.next as? UIViewController...

How about Plugin @sbarow ?

@neakor Could you please share progress on this? > We are just kicking off an effort to simplify RIBs and reduce boilerplate code now. We'll likely have something new in...

We have some RIBs where it's ViewController is embedded as sub view inside a Views/TableViewCell... RIB work very well with View Container and I just guest they implement Plugin by...

@c0diq Just do a quick check and `executing` always emit `false` first? You can refer to this line of code: https://github.com/RxSwiftCommunity/Action/blob/6ee74293788871b3e85cf4816f4d1be8b02dc93b/Sources/Action/Action.swift#L106

@ashfurrow @c0diq Should we remove implicit replay latest value and leave developer to decide if they need to?

@ashfurrow I see now we only need `isEnabled` to set enable states UI element `.rx.action`.

@mosamer Hi, I'm using Action with MVVM pretty much as @fpillet. One of the most important change will break my Pagination API is that `inputs` is `AnyObsever` so it cannot...

In some case, my Action failed and I want to get `error` paired with `input value` for display or revert local database/cache. ```swift invitationSettingAction .errors .withLatestFrom(invitationSettingAction.inputs) { $1 }.not() .subscribeNext...