I am encountering an issue with stack navigator while navigating between screens in my react native app. The error arises when using this.props.navigation.navigate. Please help me identify what I might be doing incorrectly here.https://i.sstatic.net/VPFVO.png
Although I am also utilizing react-native router-flux within my app, there is a specific need to use stack navigator. This necessity arises from the structure of my app which includes a home page displaying content from a blog feed. Clicking on "read more" should lead to a detailed view of that particular blog feed item. Hence, stack navigator comes into play for this purpose. Here's a snippet of my code:
Home.js:
import React, { Component } from 'react';
...
Navigation.js:
import React,{Component} from 'react';
...
The objective is to have clicking on "read more" open the detailed view of the selected blog feed entry. Any assistance offered would be greatly appreciated. Thank you in advance!