I am using Expo SDK 48 (after upgrading from 46), my issue is that I had a bunch of options containing headerBackTitle: "..."
or headerBackTitleVisible: false
in my React Navigation, but seems to be not working in the new update. Looked at docs on React Nav but didn't find any breaking change sooo... have anyone encountered the same problem?
code:
options={{ headerBackTitleVisible: false, headerTitle: "Detail" }}
(headerTitle works fine :))
Try adding the options inside of HomeStack.Group
,
<HomeStack.Group screenOptions={{ headerBackTitleVisible: false, ... }}>
...