diff options
author | Eric Bailey <git@esb.lol> | 2023-12-04 18:24:51 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-04 16:24:51 -0800 |
commit | 4f171be9bf6c0ffb6c1951e30c95fc0b30aa22b4 (patch) | |
tree | e00e66fbfb0fda89efbe87f3266f11baee01eb22 /src/view/com/posts/FollowingEndOfFeed.tsx | |
parent | 6e2eaa746df70bde99e83b6fd3e491a0a93135cd (diff) | |
download | voidsky-4f171be9bf6c0ffb6c1951e30c95fc0b30aa22b4.tar.zst |
Fix bottom space on feeds (#2081)
* Fix bottom space on feeds * Translate * Handle web better
Diffstat (limited to 'src/view/com/posts/FollowingEndOfFeed.tsx')
-rw-r--r-- | src/view/com/posts/FollowingEndOfFeed.tsx | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/view/com/posts/FollowingEndOfFeed.tsx b/src/view/com/posts/FollowingEndOfFeed.tsx index 48724d8b3..6630b9a83 100644 --- a/src/view/com/posts/FollowingEndOfFeed.tsx +++ b/src/view/com/posts/FollowingEndOfFeed.tsx @@ -1,5 +1,5 @@ import React from 'react' -import {StyleSheet, View} from 'react-native' +import {StyleSheet, View, Dimensions} from 'react-native' import {useNavigation} from '@react-navigation/native' import { FontAwesomeIcon, @@ -36,7 +36,12 @@ export function FollowingEndOfFeed() { }, [navigation]) return ( - <View style={[styles.container, pal.border]}> + <View + style={[ + styles.container, + pal.border, + {minHeight: Dimensions.get('window').height * 0.75}, + ]}> <View style={styles.inner}> <Text type="xl-medium" style={[s.textCenter, pal.text]}> You've reached the end of your feed! Find some more accounts to |