mlanter 9d3292069d Add support for animating nested styles
Summary:
This adds the ability to nest animated styles and is a follow up to #11030 .

**Test plan (required)**
Verify a component with a shadowOffset animation animates.

Example:
```
<Animated.View
  style={{
    shadowOffset: {
      width: 0,
      height: this._pressAnim.interpolate({
        inputRange: [0, 1],
        outputRange: [20, 5],
      }),
    },
  }},
/>

```

![example](https://cloud.githubusercontent.com/assets/19673711/23878825/e29f6ae4-0806-11e7-8650-9cff1f591204.gif)
Closes https://github.com/facebook/react-native/pull/12909

Differential Revision: D4723933

fbshipit-source-id: 751d7ceb4f9bb22283fb14a5e597730ffd1d9ff6
2017-03-16 14:45:53 -07:00
..
2017-02-21 09:11:01 -08:00
2016-12-07 17:13:42 -08:00
2017-02-24 13:01:34 -08:00
2017-03-04 19:30:34 -08:00
2017-02-27 14:04:57 -08:00
2017-03-15 17:00:46 -07:00
2017-01-31 11:58:30 -08:00
2017-03-08 00:52:17 -08:00
2016-11-02 12:29:15 -07:00
2017-03-04 19:30:34 -08:00
2017-01-31 11:13:50 -08:00
2016-11-23 11:28:29 -08:00
2017-02-21 15:18:40 -08:00
2017-03-08 00:52:17 -08:00
2017-02-24 07:00:16 -08:00