Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion example/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ export default function init() {
updateRef(name, ref) {
this[name] = ref;
}

getDownArrow(){
return <Text>👇🏾</Text>;
}

render() {
let { typography, name, code, sample } = this.state;
Expand Down Expand Up @@ -62,7 +66,8 @@ export default function init() {
onChangeText={this.onChangeText}
label='Typography'
data={typographyData}
/>
/>


<View style={{ flexDirection: 'row' }}>
<View style={{ flex: 1 }}>
Expand All @@ -72,6 +77,7 @@ export default function init() {
onChangeText={this.onChangeText}
label='Color name'
data={colorNameData}
renderAccessory={this.getDownArrow}
/>
</View>

Expand Down