diff --git a/packages/rn-tester/js/examples/View/ViewExample.js b/packages/rn-tester/js/examples/View/ViewExample.js index 5cda36f53f3..6657ae7d4c4 100644 --- a/packages/rn-tester/js/examples/View/ViewExample.js +++ b/packages/rn-tester/js/examples/View/ViewExample.js @@ -452,6 +452,87 @@ function LayoutConformanceBox(): React.Node { ); } +function BoxShadowExample(): React.Node { + const defaultStyleSize = {width: 75, height: 75}; + + return ( + + + + + + + + + + + + + + + + + + + + + + ); +} + export default ({ title: 'View', documentationURL: 'https://reactnative.dev/docs/view', @@ -1078,5 +1159,10 @@ export default ({ name: 'layout-conformance', render: LayoutConformanceExample, }, + { + title: 'Box Shadow', + name: 'box-shadow', + render: BoxShadowExample, + }, ], }: RNTesterModule);