UNPKG

react-native-paper

Version:
74 lines (71 loc) 2.38 kB
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); } import * as React from 'react'; import { Animated, StyleSheet } from 'react-native'; import shadow from '../styles/shadow'; import { withTheme } from '../core/theming'; import overlay from '../styles/overlay'; /** * Surface is a basic container that can give depth to an element with elevation shadow. * On dark theme with `adaptive` mode, surface is constructed by also placing a semi-transparent white overlay over a component surface. * See [Dark Theme](https://callstack.github.io/react-native-paper/theming.html#dark-theme) for more information. * Overlay and shadow can be applied by specifying the `elevation` property both on Android and iOS. * * <div class="screenshots"> * <img src="screenshots/surface-1.png" /> * <img src="screenshots/surface-2.png" /> * <img src="screenshots/surface-3.png" /> * </div> * * <div class="screenshots"> * <img src="screenshots/surface-dark-1.png" /> * <img src="screenshots/surface-dark-2.png" /> * </div> * * ## Usage * ```js * import * as React from 'react'; * import { Surface, Text } from 'react-native-paper'; * import { StyleSheet } from 'react-native'; * * const MyComponent = () => ( * <Surface style={styles.surface}> * <Text>Surface</Text> * </Surface> * ); * * export default MyComponent; * * const styles = StyleSheet.create({ * surface: { * padding: 8, * height: 80, * width: 80, * alignItems: 'center', * justifyContent: 'center', * elevation: 4, * }, * }); * ``` */ const Surface = _ref => { let { style, theme, ...rest } = _ref; const { elevation = 4 } = StyleSheet.flatten(style) || {}; const { dark: isDarkTheme, mode, colors } = theme; return /*#__PURE__*/React.createElement(Animated.View, _extends({}, rest, { style: [{ backgroundColor: isDarkTheme && mode === 'adaptive' ? overlay(elevation, colors.surface) : colors.surface }, elevation ? shadow(elevation) : null, style] })); }; export default withTheme(Surface); //# sourceMappingURL=Surface.js.map