After reviewing the documentation, I discovered that I can customize the styling of the body using the bodyStyle={{}}
property.
Is there a way to ensure that when the drawer is opened, the scroller will always display the bottom view? The height of the body will vary based on the content it contains.
https://codesandbox.io/s/awesome-sun-ldxxq?fontsize=14&hidenavigation=1&theme=dark
<Drawer
title="Basic Drawer"
placement="right"
closable={false}
onClose={onClose}
visible={visible}
>
<p>Some contents...</p>
<p>Some contents...</p>
<p>Some contents...</p>
....
</Drawer>