2017-09-25 05:57:31 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
*
|
2018-02-17 02:24:55 +00:00
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2017-09-25 05:57:31 +00:00
|
|
|
*
|
|
|
|
* @flow
|
|
|
|
* @format
|
|
|
|
*/
|
|
|
|
|
2018-08-23 01:22:00 +00:00
|
|
|
const DeprecatedViewPropTypes = require('DeprecatedViewPropTypes');
|
2017-09-25 05:57:31 +00:00
|
|
|
const React = require('React');
|
2018-08-23 01:22:00 +00:00
|
|
|
|
2017-09-25 05:57:31 +00:00
|
|
|
const requireNativeComponent = require('requireNativeComponent');
|
|
|
|
|
|
|
|
import type {ViewProps} from 'ViewPropTypes';
|
|
|
|
|
2018-06-01 19:37:22 +00:00
|
|
|
const RCTSafeAreaView = requireNativeComponent('RCTSafeAreaView');
|
|
|
|
|
2017-09-25 05:57:31 +00:00
|
|
|
type Props = ViewProps & {
|
|
|
|
children: any,
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Renders nested content and automatically applies paddings reflect the portion of the view
|
|
|
|
* that is not covered by navigation bars, tab bars, toolbars, and other ancestor views.
|
2017-11-14 18:08:23 +00:00
|
|
|
* Moreover, and most importantly, Safe Area's paddings reflect physical limitation of the screen,
|
2017-09-25 05:57:31 +00:00
|
|
|
* such as rounded corners or camera notches (aka sensor housing area on iPhone X).
|
|
|
|
*/
|
|
|
|
class SafeAreaView extends React.Component<Props> {
|
|
|
|
static propTypes = {
|
2018-08-23 01:22:00 +00:00
|
|
|
...DeprecatedViewPropTypes,
|
2017-09-25 05:57:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return <RCTSafeAreaView {...this.props} />;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = SafeAreaView;
|