All Versions
8
Latest Version
Avg Release Cycle
32 days
Latest Release
2977 days ago
Changelog History
Changelog History
-
v2.0 Changes
September 14, 20162.0
๐ Released on September 15th, 2016
โ Additions
- ๐ Swift 3 support
-
v1.3 Changes
May 19, 20161.3
๐ Released on May 19th, 2016
โ Additions
- โก๏ธ You can now use
viewDidInitialize()
,viewWillUpdate(newState, newProps)
, andviewDidUpdate()
to run code at special points in the lifetime of your view.viewDidInitialize()
is called when yourStateView
subclass is initialized and has received its initialstate
andprops
.viewWillUpdate(newState, newProps)
is called after yourStateView
subclass receives new values instate
orprops
and is about to update its subviews. This method is not called when your view is initialized.viewDidUpdate()
is called after yourStateView
has updated its subviews after receiving new values instate
orprops
. This method is not called when your view is initialized.
- โก๏ธ You can now use
-
v1.2 Changes
May 15, 20161.2
๐ Released on May 15th, 2016
โ Additions
- The
renderDeep()
method of StateView is now public.
- The
-
v1.1 Changes
April 27, 20161.1
๐ Released on April 26th, 2016
โ Additions
- ๐ You can now keep instances of any type in props and state, and pass instances of any type between views. See the latest documentation for more information.
-
v1.0 Changes
April 25, 20161.0
๐ Released on April 25th, 2016
โ Additions
- ๐ You can now pass values between views by naming them with an enum of your choice. With enums, the names you have chosen for your values are clearer to see together and can make use of Xcode's built-in autocomplete. To use an enum of your choice, create an enum that conforms to the
StateKey
protocol. See the latest documentation for more information.
๐ Deprecations
- You can no longer name values being passed between views with Strings. Use an enum of your choice that conforms to the
StateKey
protocol.
- ๐ You can now pass values between views by naming them with an enum of your choice. With enums, the names you have chosen for your values are clearer to see together and can make use of Xcode's built-in autocomplete. To use an enum of your choice, create an enum that conforms to the
-
v0.2
April 09, 2016 -
v0.1
April 07, 2016 -
v0.0
April 09, 2016