diff --git a/src/components/SafeAreaView/index.js b/src/components/SafeAreaView/index.js new file mode 100644 index 00000000..e959f4fa --- /dev/null +++ b/src/components/SafeAreaView/index.js @@ -0,0 +1,14 @@ +/** + * Copyright (c) 2015-present, Facebook, Inc. + * All rights reserved. + * + * This source code is licensed under the BSD-style license found in the + * LICENSE file in the root directory of this source tree. An additional grant + * of patent rights can be found in the PATENTS file in the same directory. + * + * @providesModule SafeAreaView + * @flow + */ + +import View from '../View'; +export default View; diff --git a/src/module.js b/src/module.js index 5ac67f35..a0eee4b8 100644 --- a/src/module.js +++ b/src/module.js @@ -37,6 +37,7 @@ import Modal from './components/Modal'; import Picker from './components/Picker'; import ProgressBar from './components/ProgressBar'; import RefreshControl from './components/RefreshControl'; +import SafeAreaView from './components/SafeAreaView'; import ScrollView from './components/ScrollView'; import SectionList from './components/SectionList'; import Slider from './components/Slider'; @@ -101,6 +102,7 @@ export { Picker, ProgressBar, RefreshControl, + SafeAreaView, ScrollView, SectionList, Slider, @@ -168,6 +170,7 @@ const ReactNative = { Picker, ProgressBar, RefreshControl, + SafeAreaView, ScrollView, SectionList, Slider,