import React, { useCallback } from "react";import { Button, Linking, StyleSheet, View } from "react-native";const OpenSettingsButton = ({ children }) => { const handlePress = useCallback(async () => { // Open the custom settings if the app has one await Linking.openSettings(); }, []); return