import Constants from 'expo-constants' import React from 'react' import { ScrollView } from 'react-native-gesture-handler' import SettingsAnalytics from './Settings/Analytics' import SettingsApp from './Settings/App' import SettingsDev from './Settings/Dev' import SettingsTooot from './Settings/Tooot' const ScreenMeSettings: React.FC = () => { return ( {__DEV__ || Constants.manifest.releaseChannel?.includes('testing') ? ( ) : null} ) } export default ScreenMeSettings