about summary refs log tree commit diff
path: root/src/view/screens/Home.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/view/screens/Home.tsx')
-rw-r--r--src/view/screens/Home.tsx7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/view/screens/Home.tsx b/src/view/screens/Home.tsx
index 5925b6f80..a1d202738 100644
--- a/src/view/screens/Home.tsx
+++ b/src/view/screens/Home.tsx
@@ -10,6 +10,8 @@ import {FeedModel} from '../../state/models/feed-view'
 import {ScreenParams} from '../routes'
 import {s, colors} from '../lib/styles'
 
+const HITSLOP = {left: 20, top: 20, right: 20, bottom: 20}
+
 export const Home = observer(function Home({
   navIdx,
   visible,
@@ -95,7 +97,10 @@ export const Home = observer(function Home({
         onPressTryAgain={onPressTryAgain}
       />
       {defaultFeedView.hasNewLatest ? (
-        <TouchableOpacity style={styles.loadLatest} onPress={onPressLoadLatest}>
+        <TouchableOpacity
+          style={styles.loadLatest}
+          onPress={onPressLoadLatest}
+          hitSlop={HITSLOP}>
           <FontAwesomeIcon icon="arrow-up" style={{color: colors.white}} />
           <Text style={styles.loadLatestText}>Load new posts</Text>
         </TouchableOpacity>