Skip to content

Commit 01f3c74

Browse files
committed
fix(send): allow scroll on Review screen
1 parent f0cde24 commit 01f3c74

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/screens/Wallets/Send/ReviewAndSend.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import React, {
99
} from 'react';
1010
import { StyleSheet, View, TouchableOpacity, Keyboard } from 'react-native';
1111
import { TInvoice } from '@synonymdev/react-native-ldk';
12+
import { BottomSheetScrollView } from '@gorhom/bottom-sheet';
1213
import { useTranslation } from 'react-i18next';
1314
import { validateTransaction } from 'beignet';
1415

@@ -567,7 +568,7 @@ const ReviewAndSend = ({
567568
<>
568569
<GradientView style={styles.container}>
569570
<BottomSheetNavigationHeader title={t('send_review')} />
570-
<View style={styles.content}>
571+
<BottomSheetScrollView style={styles.content}>
571572
<AmountToggle
572573
style={styles.amountToggle}
573574
amount={amount}
@@ -721,7 +722,7 @@ const ReviewAndSend = ({
721722
onConfirm={onSwipeToPay}
722723
/>
723724
</View>
724-
</View>
725+
</BottomSheetScrollView>
725726

726727
<Dialog
727728
visible={showDialog1}

0 commit comments

Comments
 (0)