/** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @format * @flow strict-local */ 'use strict'; const React = require('react'); const ReactNative = require('react-native'); const nativeImageSource = require('nativeImageSource'); const {Image, StyleSheet, Text, View} = ReactNative; class ImageCapInsetsExample extends React.Component<{}> { render() { 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;