From e98d3cdab8a7126314c3b56bf9952f342c657929 Mon Sep 17 00:00:00 2001 From: Nick Lockwood Date: Fri, 6 Nov 2015 04:50:12 -0800 Subject: [PATCH] Added single border examples Reviewed By: sahrens Differential Revision: D2622604 fb-gh-sync-id: 28205e27a323e41c6e7f11b7d4a41add4e57be71 --- Examples/UIExplorer/BorderExample.js | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/Examples/UIExplorer/BorderExample.js b/Examples/UIExplorer/BorderExample.js index 40c8f5992..ff3f73110 100644 --- a/Examples/UIExplorer/BorderExample.js +++ b/Examples/UIExplorer/BorderExample.js @@ -91,6 +91,13 @@ var styles = StyleSheet.create({ width: 100, height: 100 }, + border8: { + width: 60, + height: 60, + borderColor: 'black', + marginRight: 10, + backgroundColor: 'lightgrey', + }, }); exports.title = 'Border'; @@ -159,4 +166,18 @@ exports.examples = [ ); } }, + { + title: 'Single Borders', + description: 'top, left, bottom right', + render() { + return ( + + + + + + + ); + } + }, ];