hope add Drawer.Footer to Drawer #4540
vaynevayne
started this conversation in
Feature requests
Replies: 4 comments
|
Seconding this! I have been struggling to find a clear way to have some fixed content at the bottom of a drawer, with an indeterminate amount of content (which could be scrollable) in the main Maybe there is an example out there someone has gotten working @rtivital ? Playing around with the height of the Body (ie |
0 replies
|
up |
0 replies
|
I need this too. For a temporary solution, I use: <Drawer.Root opened={opened} onClose={close}>
<Drawer.Overlay />
<Drawer.Content>
<Drawer.Header>
<Drawer.Title>Drawer title</Drawer.Title>
<Drawer.CloseButton />
</Drawer.Header>
<Drawer.Body>Drawer content</Drawer.Body>
<Drawer.Header bottom={0}>Footer</Drawer.Header>
</Drawer.Content>
</Drawer.Root> |
0 replies
|
Just opened a PR that would resolve this issue. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
This is a very common layout in the project, hope to be native support
The current components are too simple
All reactions