UNPKG

create-expo-cljs-app

Version:

Create a react native application with Expo and Shadow-CLJS!

97 lines (84 loc) 3.74 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; var React = _interopRequireWildcard(require("react")); var _reactNative = require("react-native"); var _shadow = _interopRequireDefault(require("../styles/shadow")); var _theming = require("../core/theming"); var _overlay = _interopRequireDefault(require("../styles/overlay")); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function () { return cache; }; return cache; } function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; } 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); } /** * 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 = ({ style, theme, ...rest }) => { const flattenedStyles = _reactNative.StyleSheet.flatten(style) || {}; const { elevation = 4 } = flattenedStyles; const { dark: isDarkTheme, mode, colors } = theme; return ( /*#__PURE__*/ // @ts-ignore React.createElement(_reactNative.Animated.View, _extends({}, rest, { style: [{ backgroundColor: isDarkTheme && mode === 'adaptive' ? (0, _overlay.default)(elevation, colors.surface) : colors.surface }, elevation && (0, _shadow.default)(elevation), style] })) ); }; var _default = (0, _theming.withTheme)(Surface); exports.default = _default; //# sourceMappingURL=Surface.js.map