mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-01-18 05:12:47 +01:00
41 lines
1.5 KiB
TypeScript
41 lines
1.5 KiB
TypeScript
import React from 'react';
|
|
import { ScrollView } from 'react-native';
|
|
import { isNotificationsCapable } from '../../blue_modules/notifications';
|
|
import ListItem from '../../components/ListItem';
|
|
import loc from '../../loc';
|
|
import { useExtendedNavigation } from '../../hooks/useExtendedNavigation';
|
|
|
|
const NetworkSettings: React.FC = () => {
|
|
const navigation = useExtendedNavigation();
|
|
|
|
const navigateToElectrumSettings = () => {
|
|
navigation.navigate('ElectrumSettings');
|
|
};
|
|
|
|
const navigateToLightningSettings = () => {
|
|
navigation.navigate('LightningSettings');
|
|
};
|
|
|
|
const navigateToBlockExplorerSettings = () => {
|
|
navigation.navigate('SettingsBlockExplorer');
|
|
};
|
|
|
|
return (
|
|
<ScrollView contentInsetAdjustmentBehavior="automatic" automaticallyAdjustContentInsets>
|
|
<ListItem title={loc.settings.block_explorer} onPress={navigateToBlockExplorerSettings} testID="BlockExplorerSettings" chevron />
|
|
<ListItem title={loc.settings.network_electrum} onPress={navigateToElectrumSettings} testID="ElectrumSettings" chevron />
|
|
<ListItem title={loc.settings.lightning_settings} onPress={navigateToLightningSettings} testID="LightningSettings" chevron />
|
|
{isNotificationsCapable && (
|
|
<ListItem
|
|
title={loc.settings.notifications}
|
|
onPress={() => navigation.navigate('NotificationSettings')}
|
|
testID="NotificationSettings"
|
|
chevron
|
|
/>
|
|
)}
|
|
</ScrollView>
|
|
);
|
|
};
|
|
|
|
export default NetworkSettings;
|