diff --git a/packages/rn-tester/js/examples/Border/BorderExample.js b/packages/rn-tester/js/examples/Border/BorderExample.js
index 80813def9e5e20..c326752a2038c4 100644
--- a/packages/rn-tester/js/examples/Border/BorderExample.js
+++ b/packages/rn-tester/js/examples/Border/BorderExample.js
@@ -10,7 +10,12 @@
'use strict';
const React = require('react');
-const {StyleSheet, View} = require('react-native');
+const {
+ StyleSheet,
+ View,
+ PlatformColor,
+ DynamicColorIOS,
+} = require('react-native');
const styles = StyleSheet.create({
box: {
@@ -175,6 +180,14 @@ const styles = StyleSheet.create({
borderBottomRightRadius: 30,
borderBottomLeftRadius: 40,
},
+ border15: {
+ borderWidth: 10,
+ borderColor: PlatformColor('systemGray4', 'holo_orange_dark'),
+ },
+ border16: {
+ borderWidth: 10,
+ borderColor: DynamicColorIOS({light: 'magenta', dark: 'cyan'}),
+ },
});
exports.title = 'Border';
@@ -302,4 +315,19 @@ exports.examples = [
return ;
},
},
+ {
+ title: 'System color',
+ description: 'Using a platform color',
+ render() {
+ return ;
+ },
+ },
+ {
+ title: 'Dynamic color',
+ description: 'Using a custom dynamic color',
+ platform: 'ios',
+ render() {
+ return ;
+ },
+ },
];