Fix: ensure all views can scroll to the bottom

This commit is contained in:
Paul Frazee 2023-01-19 15:21:06 -06:00
parent 2972fd8372
commit 80f58cf9f3
13 changed files with 15 additions and 5 deletions

View file

@ -75,6 +75,7 @@ export const PostRepostedBy = observer(function PostRepostedBy({
data={view.repostedBy}
keyExtractor={item => item._reactKey}
renderItem={renderItem}
contentContainerStyle={{paddingBottom: 200}}
/>
</View>
)

View file

@ -76,6 +76,7 @@ export const PostVotedBy = observer(function PostVotedBy({
data={view.votes}
keyExtractor={item => item._reactKey}
renderItem={renderItem}
contentContainerStyle={{paddingBottom: 200}}
/>
</View>
)