HeaderBackButton дает ошибку response-navigation-stack

Я обновил собственный проект реакции с 0.61.5 до 0.62.2, и с тех пор получил ошибку ниже:

Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: undefined

Ниже приведен код:

import { HeaderBackButton } from "react-navigation-stack";
return (<HeaderBackButton 
          label={params.lastScreenTitle} 
          labelStyle={{
            color:fontColor
          }}
          tintColor={fontColor}
          onPress={() => navigation.goBack(null)} />)

react-navigation версия 4.1.0

react-navigation-stack версия 2.5.1


person User3250    schedule 21.05.2020    source источник
comment
версия реакции-навигации?   -  person Waheed Akhtar    schedule 21.05.2020
comment
@WaheedAkhtar 4.1.0   -  person User3250    schedule 21.05.2020
comment