diff --git a/example/app.js b/example/app.js
index 6a4a0b05..51496d3e 100644
--- a/example/app.js
+++ b/example/app.js
@@ -35,6 +35,10 @@ export default function init() {
updateRef(name, ref) {
this[name] = ref;
}
+
+ getDownArrow(){
+ return 👇🏾;
+ }
render() {
let { typography, name, code, sample } = this.state;
@@ -62,7 +66,8 @@ export default function init() {
onChangeText={this.onChangeText}
label='Typography'
data={typographyData}
- />
+ />
+
@@ -72,6 +77,7 @@ export default function init() {
onChangeText={this.onChangeText}
label='Color name'
data={colorNameData}
+ renderAccessory={this.getDownArrow}
/>