diff --git a/apps/mobile/src/components/OfferDetailScreen/index.tsx b/apps/mobile/src/components/OfferDetailScreen/index.tsx index a3bec2e4b..23a49ee31 100644 --- a/apps/mobile/src/components/OfferDetailScreen/index.tsx +++ b/apps/mobile/src/components/OfferDetailScreen/index.tsx @@ -2,6 +2,7 @@ import {LinearGradient} from 'expo-linear-gradient' import {isSome} from 'fp-ts/Option' import {useSetAtom} from 'jotai' import React, {useEffect} from 'react' +import {Platform} from 'react-native' import Animated, { Extrapolation, interpolate, @@ -115,6 +116,9 @@ function OfferDetailScreen({ <Animated.ScrollView overScrollMode="always" + contentContainerStyle={{ + paddingBottom: Platform.OS === 'ios' ? MAP_SIZE : 0, + }} style={{ backgroundColor: getTokens().color.black.val, }}