• Stars
    star
    3,434
  • Rank 12,433 (Top 0.3 %)
  • Language
    Swift
  • License
    MIT License
  • Created over 7 years ago
  • Updated 3 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Swift library for choreographing animations on the screen.

Spruce Logo

Spruce iOS Animation Library (and Android)

CircleCI Build Status Coverage Status Carthage compatible CocoaPods compatible License MIT Public Yes

What is it?

Spruce is a lightweight animation library that helps choreograph the animations on the screen. With so many different animation libraries out there, developers need to make sure that each view is animating at the appropriate time. Spruce can help designers request complex multi-view animations and not have the developers cringe at the prototype.

Here is a quick example of how you can Spruce up your screens!

Example

Installation Instructions

To make everything super easy, we currently support both CocoaPods and Carthage. If you want to just do everything yourself without a package manager, checkout our releases page and download the pre-built frameworks there or you can download the exact source from this Github project.

CocoaPods

Add the following to your Podfile.

pod "Spruce", '~> 1.0.0'

Carthage

Add the following to your Cartfile.

github "willowtreeapps/spruce-ios"

Getting Started

Spruce is entirely written in Swift and currently only supports Swift. Objective C wrappers are coming soon.

Basic Usage

Spruce comes packed with UIView extensions meant to make your life easier when calling an animation. Let's say we want to [.fadeIn, .expand(.slightly)] our view. We will call that array of animations ourAnimations.

Preparing for Animation

If you want a view to fade in, then you need to make sure that it is already faded out. To do that, we need to prepare the view. Spruce makes this easy by calling:

yourView.spruce.prepare(ourAnimations)

This prepare function will go through each view and set the alpha = 0.0 and also shrink the view so that when the animation runs the view will revert to it's original position.

Running the Animation

Use the following command to run a basic animation on your view.

yourView.spruce.animate(ourAnimations)

Checkout the documentation for more functions and how to better use the animate method.

Using a SortFunction

Luckily, Spruce comes with around 8 SortFunction implementations with a wide open possibility to make more! Use the SortFunction to change the order in which views animate. Consider the following example:

let sortFunction = LinearSortFunction(direction: .topToBottom, interObjectDelay: 0.1)

In this example we have created a LinearSortFunction which will have views animate in from the top to bottom. We can change the look and feel of the animation by using a RadialSortFunction instead which will have the views animate in a circular fashion. If we wanted to use this sortFunction in an actual Spruce animate call then that would look something like:

yourView.spruce.animate([.fadeIn, .expand(.slightly)], sortFunction: sortFunction)

Definitely play around with the stock SortFunction implementations until you find the one that is perfect for you! Check out the example app if you want to get previews of what each SortFunction will look like.

Using a Custom Animation

Though Spruce comes with a ton of stock animations, sometimes it is easier to make your own. We definitely encourage customization and Spruce is ready for it! Let's say you want to transform and animate a UIView object. To do let's create a PrepareHandler:

let prepareHandler = { view in
	view.transform = CGAffineTransform(scaleX: 0.1, y: 0.1)
}

The prepareHandler will be passed a UIView object by Spruce and then it is your functions job to get the view ready to animate. This way our animation will look clean and quick since the view is already scaled down and ready to grow! Now to setup the function to grow the view we need to create a ChangeFunction:

let changeFunction = { view in
	view.transform = CGAffineTransform(scaleX: 1.5, y: 1.5)
}

In changeFunction the same view will also be passed in by Spruce and then your function will be used to animate the actual view itself. These two functions will be called with each subview of the view you are animating. Now that we have both functions we are ready to create an animation:

let animation = StockAnimation.custom(prepareFunction: prepareHandler, animateFunction: changeFunction)

Once we have the animation all we need to do is pass that animation into Spruce and let the animation begin!

yourView.spruce.animate([animation])

Basic Concepts

Animations

Given a change function that specifies how the views are modified, you are able to specify any type of animation that you would like. Feel free to implement the Animation protocol and create your own animation classes.

The Animation Protocol

The protocol has one function and a variable that need to be implemented in your class. First is the changeFunction. This is a void function that takes one parameter of a UIView. The change function will specify all of the modifications that are going to be made to that view and this is what you would use to animate the changes. The function animate is called when Spruce wants to go ahead and run the animations on the view. It's important that the changeFunction is set before this call but Spruce should handle all of that for you. The completion parameter in the function call should be called by your function once the animation is complete.

var changeFunction: ChangeFunction? { get set }

func animate(delay: TimeInterval, view: UIView, completion: CompletionHandler?)

Standard Animation

The StandardAnimation class uses the default UIView.animate function to apply the change function to the view. Use this class if you want to have a stock linear movement of the changes.

Spring Animation

The SpringAnimation class uses the UIView.animate(...usingSpringWithDamping) function. With this class you can edit the springDampening and initialVelocity values so that your views will bounce on the screen.

Sort Functions

With all different types of animations, especially those dealing with subviews, we have to consider a way in which we want to animate them. Some views can have 0 subviews while others may have hundreds. To handle this, we have the notion of a SortFunction. What this will do is take each of the subviews in the animated view, and apply a mapping from the specific subview to the exact delay that it should wait before animating. Some of these will sort in a radial formation while others may actually sort randomly. This is one of the cool features of Spruce, is you can actually define your own SortFunction and then the animation will look completely different. Luckily, Spruce also comes jam packed with a ton of default SortFunction classes to make everything easier on you as the developer. Take a look at some of the default SortFunction classes we have and see if you can use them or branch off of them for your cool and custom animations!

The SortFunction Protocol

A very simple protocol that requires classes to implement the following function

func timeOffsets(view: UIView, recursiveDepth: Int) -> [TimedView]

What the above function needs to do is take in a UIView and generate a list of subviews. This list of subviews can be generated recursively or not depending on what the boolean has set. Once the list of subviews has been generated, you can define your own sort metric to determine in which order the UIView's should animate. To do so, you need to create an array of SpruceTimedView's. This special struct has two properties: (1) view: UIView and (2) timeOffset: TimeInterval. Your SortFunction can define the timeOffset however it likes, but the animation classes will use this to determine how long it should delay the start of that specific view from animating. The best way to learn, is to play around. So why not have some fun and make your own SortFunction!

Stock Sort Functions

To make sure that developers can use Spruce out of the box, we included about 8 stock SortFunction implementations. These are some of the main functions we use at WillowTree and are so excited to see what others come up with!

  • DefaultSortFunction
  • LinearSortFunction
  • CorneredSortFunction
  • RadialSortFunction
  • RandomSortFunction
  • InlineSortFunction
  • ContinousSortFunction
  • ContinuousWeightedSortFunction

Check out the docs here for more information

Stock Animations

To make everybody's lives easier, the stock animations perform the basic UIView animations that a lot of apps use today. Mix and match these animations to get the core motion you are looking for.

  • .fadeIn
  • .slide(<SlideDirection>, <Distance>)
  • .spin(<Angle>)
  • .expand(<Scale>)
  • .contact(<Scale>)
  • .custom(prepareFunction: <PrepareHandler>, animateFunction: <ChangeFunction>)

Experiment which ones work for you! If you think of anymore feel free to add them to the library yourself!

Example App

Use the example app to find the right SortFunction. In the app you will be able to see how each SortFunction is implemented. As you swap among SortFunction types, the code will be displayed on the phone and printed to the Xcode console so that you can start adding Spruce to your own app right away!

Also included in the sample app are the implementations for the two extensibility tests shown above that demonstrate how to use Spruce with a UITableView or UICollectionView.

Contributing to Spruce

Contributions are more than welcome! Please see the Contributing Guidelines and be mindful of our Code of Conduct.

Issues or Future Ideas

If part of Spruce is not working correctly be sure to file a Github issue. In the issue provide as many details as possible. This could include example code or the exact steps that you did so that everyone can reproduce the issue. Sample projects are always the best way :). This makes it easy for our developers or someone from the open-source community to start working!

If you have a feature idea submit an issue with a feature request or submit a pull request and we will work with you to merge it in!

About WillowTree!

WillowTree Logo

We build apps, responsive sites, bots—any digital product that lives on a screen—for the world’s leading companies. Our elite teams challenge themselves to build extraordinary experiences by bridging the latest strategy and design thinking with enterprise-grade software development.

Interested in working on more unique projects like Spruce? Check out our careers page.

More Repositories

1

spruce-android

Spruce Animation Library
Java
3,715
star
2

Hyperion-iOS

In-app design review tool to inspect measurements, attributes, and animations.
Objective-C
2,046
star
3

Hyperion-Android

App Debugging & Inspection Tool for Android
Java
1,934
star
4

assertk

assertions for kotlin inspired by assertj
Kotlin
709
star
5

sign-in-with-apple-button-android

An Android library for Sign In with Apple
Kotlin
275
star
6

OAK

Library to address common hurdles in Android development
Java
110
star
7

android-instant-apps-demo

Java
108
star
8

vocable-android

Vocable for Android
Kotlin
107
star
9

vocable-ios

Vocable AAC for iOS - Empowering people to communicate with care takers and loved ones.
Swift
75
star
10

fuzzywuzzy-kotlin

Fuzzy string matching for Kotlin (JVM, native, JS, Web Assembly) - port of Fuzzy Wuzzy Python lib
Kotlin
70
star
11

cordux

Swift
61
star
12

scratch

Easy app data clearing and relaunching
Java
57
star
13

ouroboros

Infinitely scrolling carousel for tvOS
Swift
49
star
14

ukor

A Roku build tool with support for build flavors
Brightscript
47
star
15

wist

A linter for BrightScript
C++
43
star
16

rootx

Wrap sqlx in even more convenience
Go
37
star
17

rocute

beautiful ui components for roku development
Brightscript
35
star
18

PinkyPromise

A tiny Promises library.
Swift
33
star
19

trafficcop

Monitor your Android apps' data usage so you can take action if it's over a threshold.
Java
28
star
20

BlurredVideo-iOS

Applying a blur to a HTTP live stream
Swift
26
star
21

SimpleRecyclerViewDemo

A simple Android application demonstrating the RecyclerView/Adapter/ViewHolder pattern.
Java
26
star
22

react-formable

React Forms
TypeScript
25
star
23

lottie-player

A mac based player for Lottie
Swift
21
star
24

opentest4k

kotlin multiplatform implementation/bindings of opentest4j
Kotlin
20
star
25

android-svg-test

Android SVG sample project to demonstrate OAK's AnimatedSvgView
Java
17
star
26

hello-shared-kotlin

Shared kotlin lib between android and ios
Kotlin
16
star
27

WillowTreeScrollingTabController

Tab based container implementation for iOS written in Swift
Swift
13
star
28

catalyst-slack-service

Unconscious gender bias has been fueling the gender gap for far too long. We’re releasing the #BiasCorrect code in hopes that coders around the world will adapt it for whatever chat-based platforms they use in order to give more people access to this tool for change.
Java
12
star
29

tablediff

Swift
11
star
30

hinoki

A Language Server Protocol implementation for BrightScript
TypeScript
10
star
31

rokul-runnings

Roku Automation, written in TypeScript
TypeScript
10
star
32

wombats-api

Wombats API
Clojure
9
star
33

WillowTreeReachability

Simple Swift class for monitoring network reachability.
Swift
6
star
34

fastlane-plugin-msbuild

MSBuild / Xamarin actions for Fastlane
Ruby
6
star
35

conductor-mobile

Conductor Mobile is a port of the Conductor Web Framework for iOS and Android
Java
6
star
36

dockertestapp

basic android app for usage in docker
Kotlin
5
star
37

vscode-ide-brightscript

Brightscript support for vscode
TypeScript
5
star
38

Sweetgum

A simple REST client built in C# using Avalonia
C#
5
star
39

wombats-web-client

Web Client for Wombats
Clojure
4
star
40

palette-vs-the-dress

Java
4
star
41

catalyst-bias-correct-service

A bias correction service
Java
4
star
42

acorn

Provides helper functionality for writing code generators (specifically for Go, in Go)
Go
4
star
43

intro-to-core-ml

An introduction to Core ML.
Swift
3
star
44

namegame_ios

The Name Game for iOS
3
star
45

xambuild

Build Xamarin projects outside of Visual Studio!
Python
3
star
46

wat-test-project

A bare skeleton for prospective WAT members to pick at.
3
star
47

ios-google-home-demo

Swift
3
star
48

IntroiOSExamples

A group of examples that are used for the WillowTree Intro to iOS Course
Swift
3
star
49

atom-ide-brightscript

TypeScript
3
star
50

iot-android-things-robot-arm

Kotlin
2
star
51

namegame_android

2
star
52

Sweetgum.Client

Sweetgum assists in the development and testing of APIs and applications that utilize APIs.
TypeScript
2
star
53

AXComponentKit

Experimental framework for more reliable iOS automation tests
Swift
2
star
54

capwic_event_info

Swift
1
star
55

slacksnax-server

JavaScript
1
star
56

friday-shots

Friday Shots rules, game runner, and results data
Python
1
star
57

battlebots-swift-front-end

A swift framework for building a BattleBots front-end.
Swift
1
star
58

smart-speaker-detector-sample-android

Finds an assortment of smart speakers
Kotlin
1
star
59

android-bootcamp

Sample app for Android bootcamp and associated issue tracking
Java
1
star
60

wombats-ios

iOS Frontend client for Wombats
Swift
1
star
61

namegame-cs

Name Game skeleton project for C#
1
star
62

slacksnax-slackCommand

JavaScript
1
star
63

wta-lighthouse-logger

JavaScript
1
star
64

code-analysis-web

HTML
1
star