From bb417900a9f6d09a5fcd3f8c07505632ddb24549 Mon Sep 17 00:00:00 2001 From: Nathan Tran Date: Fri, 17 Feb 2017 21:52:27 +1100 Subject: [PATCH] [add] `willChange` style prop type Close #367 --- src/components/View/ViewStylePropTypes.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/View/ViewStylePropTypes.js b/src/components/View/ViewStylePropTypes.js index 29e8ba5c..bffdde1b 100644 --- a/src/components/View/ViewStylePropTypes.js +++ b/src/components/View/ViewStylePropTypes.js @@ -45,5 +45,6 @@ module.exports = { transitionTimingFunction: string, userSelect: string, visibility: hiddenOrVisible, - WebkitOverflowScrolling: oneOf([ 'auto', 'touch' ]) + WebkitOverflowScrolling: oneOf([ 'auto', 'touch' ]), + willChange: string };