Dialogflow API Chatbot for React Native in Expo

I am learning react native as beginner.
I want to create a chatbot using Dialogflow in react native in Expo.

I have searched all the forums and googled , but did not find any reference of using Dialogflow specifically to Expo though found reference to React Native CLI.

In this context, can anyone please guide me how to create a chatbot using Dialogflow in Expo React Native

Here try this link

I have worked on a chatbot earlier and I can provide a few basic codes for you to begin. Feel free to check out other chatbot development services providers they might be able to help you with the basic codes and functionalities. Or if you need any other codes from my side, feel free to comment below this message.

import React, { Component } from 'react';
import { StyleSheet, Text, View } from 'react-native';
import { GiftedChat } from 'react-native-gifted-chat';
import { Dialogflow_V2 } from 'react-native-dialogflow';

import { dialogflowConfig } from './env';

const BOT_USER = {
  _id: 2,
  name: 'FAQ Bot',
 avatar: 'https://i.imgur.com/7k12EPD.png'
};
    );
  }
 }

 export default App;