Fixed drawer width
See original GitHub issueHow can I re-layout the drawer’s width after rotating my app from portrait to landscape mode? The problem is, the function for openDrawerOffset
is only called once and not again after rotating, which means the when in landscape mode (or on a tablet), the menu takes way too much space… Thanks!
Issue Analytics
- State:
- Created 7 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
How to set the width of Material UI drawer - Stack Overflow
The Drawer takes the width of the inner most element. const useStyle = makeStyles({ list: { width: 150 } }); <Drawer> <Container ...
Read more >Drawer API - Material UI - MUI
API reference docs for the React Drawer component. ... You can learn about the difference by reading this guide on minimizing bundle size....
Read more >How to Customize MUI Drawer Size, Color, and Elevation
Learn how to customize MUI Drawer width, height, background color, text color, and elevation (box-shadow).
Read more >[Drawer] Span the entire width of the container #6304 - GitHub
Currently it only accepts a fix number of width. It would be helpful to allow fullWidth option or even 100% width. My current...
Read more >MudDrawer API - MudBlazor - Blazor Component Library
Name Type Default
Anchor Anchor Anchor.Start
Breakpoint Breakpoint Breakpoint.Md
ChildContent RenderFragment null
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
👍
That was exactly the problem. Sorry and thanks!