thegamenicorus / react-native-timeline-listview

Timeline component for React Native App
https://www.npmjs.com/package/react-native-timeline-listview
MIT License
1.16k stars 184 forks source link

the position of time #24

Closed panhs closed 6 years ago

panhs commented 6 years ago

can we show the time top of titile?

frost4869 commented 6 years ago

related: Can we hide the time completely or have a option for not showing time at all ?

DeanmvSG commented 6 years ago

@frost4869 You can hide the time by rendering a custom time component and then just returning null. For example?

<Timeline
    renderTime={this.renderTime}
/>

renderTime = () => {
    return null
}
thegamenicorus commented 6 years ago

Hi All,

Thanks @ngnclht1102 for PR #26. now we can use showTime = {false} to hide the time container.