adjust content container padding

This commit is contained in:
Hailey
2024-06-14 12:59:22 -07:00
parent c02b584c7c
commit 1bd9985d20
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -76,7 +76,7 @@ export function StepFeeds() {
data={filterFeeds(query ? searchedFeeds : popularFeeds)}
renderItem={renderItem}
keyExtractor={keyExtractor}
contentContainerStyle={{paddingTop: 12}}
contentContainerStyle={{paddingTop: 6}}
onEndReached={!query ? () => fetchNextPage() : undefined}
onEndReachedThreshold={2}
renderScrollComponent={props => <KeyboardAwareScrollView {...props} />}
@@ -52,7 +52,7 @@ export function StepProfiles() {
data={query ? results : topFollowers}
renderItem={renderItem}
keyExtractor={keyExtractor}
contentContainerStyle={{paddingTop: 12}}
contentContainerStyle={{paddingTop: 6}}
renderScrollComponent={props => <KeyboardAwareScrollView {...props} />}
keyboardShouldPersistTaps="handled"
containWeb={true}