如何设置没有iconElementLeft的App bar组件?
How to set App bar component without iconElementLeft?
我需要使用没有左图标的应用栏组件。
我试图忽略 iconElementLeft 属性 但它不起作用而且
图标尚未出现。
import React from 'react';
import AppBar from 'material-ui/AppBar';
const AppBar = () => (
<AppBar
title="Title"
/>
);
export default AppBar;
有没有办法去掉左边的图标?
将 showMenuIconButton
设置为 false
。
<AppBar
title="Title"
showMenuIconButton={false}/>
我需要使用没有左图标的应用栏组件。
我试图忽略 iconElementLeft 属性 但它不起作用而且 图标尚未出现。
import React from 'react';
import AppBar from 'material-ui/AppBar';
const AppBar = () => (
<AppBar
title="Title"
/>
);
export default AppBar;
有没有办法去掉左边的图标?
将 showMenuIconButton
设置为 false
。
<AppBar
title="Title"
showMenuIconButton={false}/>