How do I make an app bar that looks like this:
I can create the top half of the app bar with the search box but I'm having trouble adding the bottom half. This is my code so far:
<AppBar
style={{backgroundColor: MuiTheme.palette.primary1Color, flexWrap: 'wrap'}}
showMenuIconButton={false}
title={explorerSearch}
titleStyle={MuiTheme.title}
iconClassNameRight='muidocs-icon-navigation-expand-more'
>
<Toolbar>
<ToolbarGroup>
{this._getContent()}
</ToolbarGroup>
</Toolbar>
</AppBar>
This is what the output looks like:
I'd like the "TEXT" to show up in a new line below the search bar. How do I do that?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…