import { useLayoutEffect } from "react"; import { View } from "react-native"; import { NCoreUIKitLocalize, NCoreUIKitTheme, PageContainer, CodeViewer, Button, Header, Text } from "ncore-ui-kit"; import { useNavigation } from "@react-navigation/native"; import type RootStackParamList from "../../navigation/type"; import type { NativeStackNavigationProp } from "@react-navigation/native-stack"; import { ChevronRightIcon } from "lucide-react-native"; const Installation = () => { const { colors, spaces } = NCoreUIKitTheme.useContext(); const { localize } = NCoreUIKitLocalize.useContext(); const navigation = useNavigation>(); useLayoutEffect(() => { navigation.setOptions({ header: () => (
), headerShown: true }); }, []); return ( {localize("installation-desc")} {localize("installation-installationTitle")} {localize("installation-peerDepsTitle")} {localize("installation-peerDepsDesc")}