ion-toolbar
Toolbars are generally positioned above or below content and provide content and actions for the current screen. When placed within the content, toolbars will scroll with the content.
Toolbars can contain several different components including titles, buttons, icons, back buttons, menu buttons, searchbars, segments, progress bars, and more.
Basic Usage
It is recommended to put a toolbar inside of a header or footer for proper positioning. When a toolbar is placed in a header it will appear fixed at the top of the content. When it is placed in a footer it will appear fixed at the bottom. Fullscreen content will scroll behind a toolbar in a header or footer. A title component can be used to display text inside of the toolbar.
Buttons in Toolbars
Buttons placed in a toolbar should be placed inside of the buttons component. The buttons component can be positioned inside of the toolbar using a named slot. The "primary"
and "secondary"
slots behave differently in ios
and md
mode.
The buttons component can wrap a standard button, back button, menu button, or several of any of them. A button in a toolbar is styled to be clear by default, but this can be changed using the fill
property on the button. The properties included on back button and menu button in this example are for display purposes; see their respective documentation for proper usage.
Searchbars in Toolbars
A searchbar can be placed inside of a toolbar to search through the content. It should be the only child component of the toolbar, and will take up the full width and height.
Segments in Toolbars
Segments are generally used in toolbars to toggle between two different content views on the same page. They can be placed in a toolbar with other components, such as buttons, but should not be placed alongside a title.
Progress Bars in Toolbars
A progress bar is used as a loading indicator to show an ongoing process in an app. Progress bars can be placed with any other components inside of a toolbar as they will align with the bottom of the toolbar.
Theming
Colors
CSS Custom Properties
Borders
In md
mode, the <ion-header>
will receive a box-shadow on the bottom, and the <ion-footer>
will receive a box-shadow on the top. In ios
mode, the <ion-header>
will receive a border on the bottom, and the <ion-footer>
will receive a border on the top.
Properties
color
Description | The color to use from your application's color palette. Default options are: "primary" , "secondary" , "tertiary" , "success" , "warning" , "danger" , "light" , "medium" , and "dark" . For more information on colors, see theming. |
Attribute | color |
Type | "danger" | "dark" | "light" | "medium" | "primary" | "secondary" | "success" | "tertiary" | "warning" | string | undefined |
Default | undefined |
mode
Description | modeは、どのプラットフォームのスタイルを使用するかを決定します。 |
Attribute | mode |
Type | "ios" | "md" |
Default | undefined |
Events
No events available for this component.
Methods
No public methods available for this component.
CSS Shadow Parts
No CSS shadow parts available for this component.
CSS Custom Properties
Name | Description |
---|---|
--background | ツールバーの背景 |
--border-color | ツールバーの枠の色 |
--border-style | ツールバーのボーダーのスタイル |
--border-width | ツールバーの枠の幅 |
--color | ツールバーテキストの色 |
--min-height | ツールバーの最小高さ |
--opacity | ツールバーの背景の不透明度 |
--padding-bottom | ツールバーのBottom Padding |
--padding-end | ツールバーの向きが左から右の場合はRight Padding、右から左の場合はLeft Paddingを使用します。 |
--padding-start | ツールバーの方向が左から右の場合はLeft Padding、右から左の場合はRight Paddingを使用します。 |
--padding-top | ツールバーのTop Padding |
Slots
Name | Description |
---|---|
`` | slotがない状態で提供される場合、コンテンツは名前付きslotの間に配置されます。 |
end | コンテンツは、LTRではツールバーテキストの右側に、RTLでは左側に配置されます。 |
primary | コンテンツは、ios modeではツールバーテキストの右側に、md modeでは右端に配置されます。 |
secondary | コンテンツは、ios modeではツールバーテキストの左側に、md modeでは右側に直接配置されます。 |
start | コンテンツは、LTRではツールバーテキストの左側に、RTLでは右側に配置されます。 |