[LayoutAnimation] RCTAnimationTypeKeyboard

Summary:
This adds the Keyboard animation type for when you want to animate UI based on the keyboard appearing/disappearing.
Closes https://github.com/facebook/react-native/pull/1366
Github Author: Stanislav Vishnevskiy <vishnevskiy@gmail.com>

Test Plan: Imported from GitHub, without a `Test Plan:` line.
This commit is contained in:
Stanislav Vishnevskiy
2015-06-25 09:14:19 -07:00
parent 99bc08cf61
commit f383bf2b83
4 changed files with 13 additions and 7 deletions

View File

@@ -23,6 +23,7 @@ var TypesEnum = {
easeInEaseOut: true,
easeIn: true,
easeOut: true,
keyboard: true,
};
var Types = keyMirror(TypesEnum);