Top App Barトップアップバー
画面上部に配置するモバイルやタブレット向けのグローバルなナビゲーションです。
更新 2024/11/1
バリエーション
ナビゲーション用のNavBarと、ページタイトル用のTitleBarの2種類で構成されます。TopAppBarを連ねて使用することで、多様なレイアウトに対応します。
- Nav Bar
- Title Bar (with Trailing Icon)
- Nav Bar + Title Bar
- Nav Bar + Title Bar (with Icons)
import { Dd, Dl, Dt } from "@/components/LayoutUtils";
import { IconButton } from "@serendie/ui";
import { TopAppBar } from "@serendie/ui";
export function TypeSample() {
return (
<Dl variant="dim">
<Dt>Nav Bar</Dt>
<Dd>
<TopAppBar
type="navbar"
headingIconButton={
<IconButton icon="menu" styleType="ghost" shape="rectangle" />
}
trailingIconButtons={
<IconButton icon="search" styleType="ghost" shape="rectangle" />
}
/>
</Dd>
<Dt>Title Bar (with Trailing Icon)</Dt>
<Dd>
<TopAppBar
type="titleBar"
title="Page Title"
trailingIconButtons={
<IconButton icon="add" styleType="ghost" shape="rectangle" />
}
/>
</Dd>
<Dt>Nav Bar + Title Bar</Dt>
<Dd>
<TopAppBar
type="navbar"
headingIconButton={
<IconButton icon="menu" styleType="ghost" shape="rectangle" />
}
trailingIconButtons={
<IconButton icon="search" styleType="ghost" shape="rectangle" />
}
/>
<TopAppBar type="titleBar" title="Page Title" />
</Dd>
<Dt>Nav Bar + Title Bar (with Icons)</Dt>
<Dd>
<TopAppBar
type="navbar"
headingIconButton={
<IconButton icon="menu" styleType="ghost" shape="rectangle" />
}
trailingIconButtons={
<IconButton icon="search" styleType="ghost" shape="rectangle" />
}
/>
<TopAppBar
type="titleBar"
title="Page Title"
headingIconButton={
<IconButton
icon="chevron_left"
styleType="ghost"
shape="rectangle"
/>
}
trailingIconButtons={
<IconButton icon="add" styleType="ghost" shape="rectangle" />
}
/>
</Dd>
</Dl>
);
}