AppBarPosition
Specifies the position of the AppBar (see example).
The possible values are:
top
(Default)—Positions the AppBar at the top of the content. Setting theposition
property totop
requires adding the Appbar component before the page content. The position property applies CSStop: 0
style infixed mode
and also adds abox-shadow
to the bottom of the AppBar.bottom
—Positions the AppBar at the bottom of the content. Setting theposition
property tobottom
requires adding the Appbar component after the page content. The position property applies CSSbottom: 0
style infixed mode
and also adds abox-shadow
to the top of the AppBar.
type
AppBarPosition = "top" | "bottom";