Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions src/screens/Transfer/ExternalNode/Connection.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { memo, ReactElement, useEffect, useState } from 'react';
import { StyleSheet, View } from 'react-native';
import { ScrollView, StyleSheet, View } from 'react-native';
import Clipboard from '@react-native-clipboard/clipboard';
import { Trans, useTranslation } from 'react-i18next';

Expand Down Expand Up @@ -94,7 +94,7 @@ const ExternalNode = ({
<ThemedView style={styles.root}>
<SafeAreaInset type="top" />
<NavigationHeader title={t('external.nav_title')} />
<View style={styles.content} testID="ExternalNode">
<ScrollView contentContainerStyle={styles.content} testID="ExternalNode">
<Display>
<Trans
t={t}
Expand Down Expand Up @@ -187,7 +187,7 @@ const ExternalNode = ({
onPress={onContinue}
/>
</View>
</View>
</ScrollView>
<SafeAreaInset type="bottom" minPadding={16} />
</ThemedView>
);
Expand All @@ -198,7 +198,7 @@ const styles = StyleSheet.create({
flex: 1,
},
content: {
flex: 1,
flexGrow: 1,
paddingTop: 16,
paddingHorizontal: 16,
},
Expand Down Expand Up @@ -226,6 +226,7 @@ const styles = StyleSheet.create({
},
button: {
flex: 1,
marginTop: 32,
},
});

Expand Down
Loading