[WIP] Support react-native-dom (#1253)

Add support for react-native-dom
This commit is contained in:
Hampton Maxwell
2018-09-27 16:03:45 -07:00
committed by GitHub
parent d9eef0fd51
commit 75e3a77d59
8 changed files with 433 additions and 0 deletions

8
dom/resizeModes.js Normal file
View File

@@ -0,0 +1,8 @@
// @flow
export default {
ScaleNone: 0,
ScaleToFill: 1,
ScaleAspectFit: 2,
ScaleAspectFill: 3,
};