Skip to content

Instantly share code, notes, and snippets.

View williamjayjay's full-sized avatar
🌍
In focused

William FS williamjayjay

🌍
In focused
View GitHub Profile
@williamjayjay
williamjayjay / useCheckAppVersion.tsx
Last active May 9, 2025 18:42
React Native useCheckAppVersion
import { useNavigation } from "@react-navigation/native";
import { useEffect, useState } from "react";
import { Modal, View, Text, Button, Platform, Linking, Alert } from "react-native";
import { useTranslation } from "react-i18next";
import VersionCheck from "react-native-version-check";
export function useCheckAppVersion() {
const [showModal, setShowModal] = useState(false);
const [latestVersion, setLatestVersion] = useState("");