AppBarヘッダーにカスタム色を使用しようとしています。 AppBarのタイトルは「My AppBar」です。私は主なテーマカラーとして白を使用しています。 『タイトル:それはAppBarで異なる色を適用する方法材質 - ui
import React from 'react';
import * as Colors from 'material-ui/styles/colors';
import MuiThemeProvider from 'material-ui/styles/MuiThemeProvider';
import getMuiTheme from 'material-ui/styles/getMuiTheme';
import AppBar from 'material-ui/AppBar';
import TextField from 'material-ui/TextField';
const muiTheme = getMuiTheme({
palette: {
textColor: Colors.darkBlack,
primary1Color: Colors.white,
primary2Color: Colors.indigo700,
accent1Color: Colors.redA200,
pickerHeaderColor: Colors.darkBlack,
},
appBar: {
height: 60,
},
});
class Main extends React.Component {
render() {
// MuiThemeProvider takes the theme as a property and passed it down the hierarchy
// using React's context feature.
return (
<MuiThemeProvider muiTheme={muiTheme}>
<AppBar title="My AppBar">
<div>
< TextField hintText = "username"/>
< TextField hintText = "password"/>
</div>
</AppBar>
</MuiThemeProvider>
);
}
}
export default Main;
しかし、パレットのスタイルは、アプリケーションバー上書きここ
が私のコードは』をも同じ「白」色を使用しているバーが、アプリケーションバーの「タイトル」に適しています色とタイトルが表示されていません。私は何かを含めるべきですか、私は何かを間違っていますか?
を説明し、それをエクスポートすることになっていますか?私はApp.jsで同様のことをインポート後に作成し、色は変更されませんでした。 – HomeMade
ああ、それは働いて、私は '' ''の中に '' muiTheme = {muiTheme} '' –
HomeMade