/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow strict-local * @format */ 'use strict'; const React = require('react'); const ReactNative = require('react-native'); const nativeImageSource = require('react-native/Libraries/Image/nativeImageSource').default; const {Image, StyleSheet, Text, View} = ReactNative; type Props = $ReadOnly<{}>; class ImageCapInsetsExample extends React.Component { render(): React.Node { return ( capInsets: none capInsets: 15 ); } } const styles = StyleSheet.create({ background: { backgroundColor: '#F6F6F6', justifyContent: 'center', alignItems: 'center', }, storyBackground: { width: 250, height: 150, borderWidth: 1, }, }); module.exports = ImageCapInsetsExample;