使用react-navigation
版本5,屏幕是否可以访问为其指定(或当前设置)的选项?我看到可以打电话给navigation.setOptions()
,但看不到检索这些选项的方法。
用例:我想从屏幕组件内部访问屏幕标题。
<SettingsStack.Screen
name={"About"}
component={AboutScreen}
options={{
title: "About Screen Title", // <-- how do I access this from within the AboutScreen component?
}}
/>