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 ( + + + + + + + ); + } + }, ];