mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 18:00:17 +01:00
53 lines
1.8 KiB
JavaScript
53 lines
1.8 KiB
JavaScript
import React, { useEffect, useState } from 'react';
|
|
import { ScrollView, TouchableOpacity, StyleSheet } from 'react-native';
|
|
import { BlueNavigationStyle, BlueLoading, SafeBlueArea, BlueHeaderDefaultSub, BlueListItem } from '../../BlueComponents';
|
|
import { useNavigation } from '@react-navigation/native';
|
|
const loc = require('../../loc');
|
|
|
|
const styles = StyleSheet.create({
|
|
root: {
|
|
flex: 1,
|
|
},
|
|
});
|
|
|
|
const Settings = () => {
|
|
const [isLoading, setIsLoading] = useState(true);
|
|
const { navigate } = useNavigation();
|
|
|
|
useEffect(() => {
|
|
setIsLoading(false);
|
|
}, []);
|
|
|
|
return isLoading ? (
|
|
<BlueLoading />
|
|
) : (
|
|
<SafeBlueArea forceInset={{ horizontal: 'always' }} style={styles.root}>
|
|
<ScrollView>
|
|
<BlueHeaderDefaultSub leftText={loc.settings.header} rightComponent={null} />
|
|
<BlueListItem title="General" component={TouchableOpacity} onPress={() => navigate('GeneralSettings')} chevron />
|
|
<BlueListItem title={loc.settings.currency} component={TouchableOpacity} onPress={() => navigate('Currency')} chevron />
|
|
<BlueListItem title={loc.settings.language} component={TouchableOpacity} onPress={() => navigate('Language')} chevron />
|
|
<BlueListItem
|
|
title="Security"
|
|
onPress={() => navigate('EncryptStorage')}
|
|
component={TouchableOpacity}
|
|
testID="SecurityButton"
|
|
chevron
|
|
/>
|
|
<BlueListItem title="Network" component={TouchableOpacity} onPress={() => navigate('NetworkSettings')} chevron />
|
|
<BlueListItem
|
|
title={loc.settings.about}
|
|
component={TouchableOpacity}
|
|
onPress={() => navigate('About')}
|
|
testID="AboutButton"
|
|
chevron
|
|
/>
|
|
</ScrollView>
|
|
</SafeBlueArea>
|
|
);
|
|
};
|
|
Settings.navigationOptions = {
|
|
...BlueNavigationStyle,
|
|
};
|
|
export default Settings;
|