This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import {useState, useEffect, useRef, useCallback} from 'react'; | |
| import {View,Text,BackHandler, Share as RNshare, Platform} from 'react-native'; | |
| import {WebView} from 'react-native-webview'; | |
| import {useRoute, useNavigation} from '@react-navigation/native'; | |
| import {useFocusEffect, useIsFocused} from '@react-navigation/native'; | |
| import Share from 'react-native-share'; | |
| import ReactNativeBlobUtil from 'react-native-blob-util'; | |
| import styled from 'styled-components/native'; | |
| import axios from 'axios'; | |
| import HeaderComponentWithBackButton from '../components/HeaderComponentWithBackButton'; |