We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 950bd92 commit 950d2d6Copy full SHA for 950d2d6
packages/rn-tester/js/examples/BackgroundImage/BackgroundImageExample.js
@@ -459,4 +459,22 @@ exports.examples = [
459
);
460
},
461
462
+ {
463
+ title: 'URL Image',
464
+ name: 'url-image',
465
+ render(): React.Node {
466
+ return (
467
+ <BackgroundImageBox
468
+ style={{
469
+ width: 200,
470
+ height: 200,
471
+ experimental_backgroundImage:
472
+ 'url(https://reactnative.dev/img/tiny_logo.png)',
473
+ experimental_backgroundRepeat: 'no-repeat',
474
+ }}
475
+ testID="background-image-url"
476
+ />
477
+ );
478
+ },
479
480
] as Array<RNTesterModuleExample>;
0 commit comments