From e8f6df93b2e920d81b20f3a8f03c49358572175a Mon Sep 17 00:00:00 2001 From: Dylan Vann Date: Tue, 30 Jan 2018 20:42:58 -0500 Subject: [PATCH] Add rectangular border radius example. --- example/fastImage/BorderRadiusExample.js | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/example/fastImage/BorderRadiusExample.js b/example/fastImage/BorderRadiusExample.js index 0ce155c..bc38051 100644 --- a/example/fastImage/BorderRadiusExample.js +++ b/example/fastImage/BorderRadiusExample.js @@ -15,7 +15,14 @@ const BorderRadiusExample = ({ onPressReload, bust }) => ( + ( ) const styles = StyleSheet.create({ - image: { + imageSquare: { height: 100, backgroundColor: '#ddd', margin: 20, width: 100, flex: 0, }, + imageRectangular: { + height: 100, + backgroundColor: '#ddd', + margin: 20, + flex: 1, + }, plus: { width: 30, height: 30,