0
我想設置「ToolbarAndroid」的副標題基於沒有成功狀態變量,ToolbarAndroid反應本地的動態字幕結合狀態
我設置的初始狀態爲空,我試圖做這樣的事「僅當它不爲空時顯示字幕「
constructor(props) {
super(props);
this.state = {
subtitle: null
}
}
render() { ...
<ToolbarAndroid
..
subtitle={() => {
if (this.state.subtitle !== null) {
return this.state.subtitle;
} else {
return '';
}
}}
我在想什麼?