import React from 'react' import { StyleSheet, View } from 'react-native' import withCacheBust from './withCacheBust' import SectionFlex from './SectionFlex' import FastImage from 'react-native-fast-image' import Section from './Section' import FeatureText from './FeatureText' const IMAGE_URL = 'https://media.giphy.com/media/GEsoqZDGVoisw/giphy.gif' const BorderRadiusExample = ({ onPressReload, bust }) => (
) const styles = StyleSheet.create({ imageSquare: { borderRadius: 50, height: 100, backgroundColor: '#ddd', margin: 20, width: 100, flex: 0, }, imageRectangular: { borderRadius: 50, borderTopLeftRadius: 10, borderBottomRightRadius: 10, height: 100, backgroundColor: '#ddd', margin: 20, flex: 1, }, plus: { width: 30, height: 30, position: 'absolute', bottom: 0, right: 0, }, }) export default withCacheBust(BorderRadiusExample)