Skip to content

Commit

Permalink
add scroll to receive modal
Browse files Browse the repository at this point in the history
  • Loading branch information
rahulnr7 committed Oct 7, 2024
1 parent da2a88f commit be05614
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ const Modal = ({amount, address}: {amount: string; address: string}) => {

return (
<View style={[styles.container, styles.flex]}>
<RNScrollView contentContainerStyle={[styles.flex, styles.modalContainer]}>
<RNScrollView contentContainerStyle={[styles.flex_grow, styles.modalContainer]}>
{hasAddress ? (
<ShareQRCodeCard
title={title}
Expand Down Expand Up @@ -176,6 +176,9 @@ const useStyles = () => {
flex: {
...atoms.flex_1,
},
flex_grow: {
...atoms.flex_grow,
},
textAddressDetails: {
color: color.text_gray_medium,
...atoms.body_1_lg_regular,
Expand Down

0 comments on commit be05614

Please sign in to comment.