Tom Baranes

Results 69 comments of Tom Baranes

Should we really close this? There's still a few bugs related 🙃

A few interesting UICollectionView layout animations: [AnimatedCollectionViewLayout](https://github.com/KelvinJin/AnimatedCollectionViewLayout?utm_campaign=This%2BWeek%2Bin%2BSwift&utm_medium=web&utm_source=This_Week_in_Swift_121)

Yeah, but they are collectionView transitions 😆 I don't know well the API, but we may be able to reuse the viewControllers animations for some cases.

We can create an `CheckBoxAnimationType` which will contains pop, squeeze animations or dedicated animations like your dribble link. It follows the current logic of `IBanimatable`: `AnimationType`, `TransitionAnimationType`... The implementation will...

Support for `UIView`: - Basics #529 - `BorderDesignable` #531 - `RotationDesignable` #532 - `ShadowDesignable` #533 - `BlurDesignable` #534 - `GradientDesignable` #535 - `MaskDesignable` #536

Here a list of what's left once #536 is merged: - Documentation: we need to clarify how we want to do it - Demo app: is this necessary? - Support...

Random color, random gradient? (we can even go further and play with [Chameleon ](https://github.com/unifiedh/Chameleon-Swift) to have a nice result)

Depending, it would be nice to randomise a gradient / color relative to a defined background. For example, when prototyping, we could just specify a color, and have everything around...

Exactly! That's why I was saying it shouldn't be a priority :laughing:

We can create a [subspec](https://guides.cocoapods.org/syntax/podspec.html#group_subspecs) if we want to keep everything in IBAnimatable. That means we can specify in our Podfile which spec we wants: ``` pod 'IBAnimatable' pod 'IBAnimatable/Prototyping'...