Skip to content

Commit

Permalink
fix-1322: Keyboard covers text area in offer request
Browse files Browse the repository at this point in the history
  • Loading branch information
Samuel Tremko authored and SamTremko committed Oct 23, 2024
1 parent 0bfab3f commit 7c1f83b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions apps/mobile/src/components/OfferDetailScreen/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -115,6 +116,9 @@ function OfferDetailScreen({
<Title offer={offer.value} />
<Animated.ScrollView
overScrollMode="always"
contentContainerStyle={{
paddingBottom: Platform.OS === 'ios' ? MAP_SIZE : 0,
}}
style={{
backgroundColor: getTokens().color.black.val,
}}
Expand Down

0 comments on commit 7c1f83b

Please sign in to comment.