import { BackButton } from "@/components"; import AppHeader from "@/components/_ShareComponent/AppHeader"; import PdfViewer from "@/components/_ShareComponent/PdfViewer"; import API_STRORAGE from "@/constants/base-url-api-strorage"; import { Stack, useLocalSearchParams } from "expo-router"; import { SafeAreaView } from "react-native-safe-area-context"; export default function FileScreen() { const { id } = useLocalSearchParams(); const url = API_STRORAGE.GET({ fileId: id as string }); return ( <> } />, }} /> ); }