MatDrawer で MatAppBar を使用したい。問題は、MatDrawer がアプリ バーをスクロールすることです。AppBar の後ろにスクロールするにはどうすればよいですか?
MatDrawer を使用した MatAppBar のスクリーンショット
<MatAppBarContainer >
<MatAppBar Fixed="true">
<MatAppBarRow>
<MatAppBarSection>
<MatIconButton Icon="menu" OnClick="@((e) => ButtonClicked())"></MatIconButton>
<MatAppBarTitle>MatBlazor - Material Design components for Blazor</MatAppBarTitle>
</MatAppBarSection>
<MatAppBarSection Align="@MatAppBarSectionAlign.End">
<MatIconButton Icon="favorite"></MatIconButton>
</MatAppBarSection>
</MatAppBarRow>
</MatAppBar>
<MatAppBarContent>
<MatDrawerContainer Style="width: 100%; height: 100vh;">
<MatDrawer @bind-Opened="@Opened" Style="background-color: whitesmoke">
<MatNavMenu>
<MatNavItem OnClick="ClickMe" Title="Item 1">Item 1 - OnClick</MatNavItem>
<MatNavItem Disabled="true" Title="Item 2">Item 2</MatNavItem>
</MatNavMenu>
</MatDrawer>
<MatDrawerContent>
<div>
<p>page content</p>
</div>
</MatDrawerContent>
</MatDrawerContainer>
</MatAppBarContent>