import React, {useCallback} from 'react'; import {StyleSheet, View, Text, Button, TextInput} from 'react-native'; import {KeyboardAwareScrollView} from 'react-native-keyboard-aware-scroll-view'; import useLogout from '../hooks/useLogout'; import {useNavigation} from '@react-navigation/native'; import useSettings from '../hooks/useSettings'; const Settings = () => { const logOut = useLogout(); const navigation = useNavigation(); const [ isLoaded, save, awsKeyId, setAwsKeyId, awsSecretAccessKey, setAwsSecretAccessKey, ] = useSettings(); const onLogout = useCallback(() => { logOut().then(() => { navigation.reset({index: 0, routes: [{name: 'SignIn'}]}); }); }, [logOut]); const onSave = useCallback(() => { save().then(() => navigation.goBack()); }, [save, navigation]); if (!isLoaded) { return Loading...; } return ( AWS Key ID AWS Secret Access Key