import React from 'react'; import { StyleSheet, TouchableOpacity } from 'react-native'; import { Icon } from '@rneui/themed'; import { useTheme } from '../themes'; import { useExtendedNavigation } from '../../hooks/useExtendedNavigation'; import loc from '../../loc'; const SettingsButton = () => { const { colors } = useTheme(); const { navigate } = useExtendedNavigation(); const onPress = () => { navigate('Settings'); }; return ( ); }; export default SettingsButton; const style = StyleSheet.create({ buttonStyle: { width: 30, height: 30, borderRadius: 15, justifyContent: 'center', alignContent: 'center', }, });