2019-05-31 15:42:01 -07:00
|
|
|
### No new messages
|
2019-03-20 10:42:28 -07:00
|
|
|
|
|
|
|
|
```jsx
|
|
|
|
|
<util.ConversationContext theme={util.theme} ios={util.ios}>
|
|
|
|
|
<ScrollDownButton
|
2019-05-31 15:42:01 -07:00
|
|
|
withNewMessages={false}
|
2019-03-20 10:42:28 -07:00
|
|
|
conversationId="id-1"
|
|
|
|
|
scrollDown={id => console.log('scrollDown', id)}
|
|
|
|
|
i18n={util.i18n}
|
|
|
|
|
/>
|
|
|
|
|
</util.ConversationContext>
|
|
|
|
|
```
|
|
|
|
|
|
2019-05-31 15:42:01 -07:00
|
|
|
### With new messages
|
2019-03-20 10:42:28 -07:00
|
|
|
|
|
|
|
|
```jsx
|
|
|
|
|
<util.ConversationContext theme={util.theme} ios={util.ios}>
|
|
|
|
|
<ScrollDownButton
|
2019-05-31 15:42:01 -07:00
|
|
|
withNewMessages={true}
|
2019-03-20 10:42:28 -07:00
|
|
|
conversationId="id-2"
|
|
|
|
|
scrollDown={id => console.log('scrollDown', id)}
|
|
|
|
|
i18n={util.i18n}
|
|
|
|
|
/>
|
|
|
|
|
</util.ConversationContext>
|
|
|
|
|
```
|