Pular para o conteúdo

BottomNavigation API

Documentação da API para o componente React BottomNavigation . Aprenda sobre as propriedades disponíveis e a API CSS.

Importação

import BottomNavigation from '@mui/material/BottomNavigation';
// ou
import { BottomNavigation } from '@mui/material';
Você pode aprender sobre a diferença lendo este guia sobre como minimizar o tamanho do pacote.

Nome do componente

The name MuiBottomNavigation can be used when providing default props or style overrides in the theme.

Propriedades

Props of the nativo component are also available.

NomeTipoPadrãoDescrição
childrennode
O conteúdo do componente.
classesobject
Sobrescreve ou extende os estilos aplicados para o componente. Veja a API CSS abaixo para maiores detalhes.
componentelementType
The component used for the root node. Either a string to use a HTML element or a component.
onChangefunc
Callback fired when the value changes.

Signature:
function(event: object, value: any) => void
event: The event source of the callback. Warning: This is a generic event not a change event.
value: We default to the index of the child.
showLabelsboolfalse
If true, all BottomNavigationActions will show their labels. By default, only the selected BottomNavigationAction will show its label.
sxfunc
| object
The system prop that allows defining system overrides as well as additional CSS styles. See the `sx` page for more details.
valueany
The value of the currently selected BottomNavigationAction.

O ref é encaminhado para o elemento raiz.

CSS

Nome da regraClasse globalDescrição
root.MuiBottomNavigation-rootEstilos aplicados ao elemento raiz.

Você pode sobrescrever o estilo do componente usando uma dessas opções de customização:

Demonstrações