Fix load spinner positioning (close #415) (#421)

zio/stable
Paul Frazee 2023-04-07 11:46:26 -05:00 committed by GitHub
parent e27cd0098f
commit 0407e93ef8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -169,6 +169,7 @@ export const Feed = observer(function Feed({
onRefresh={onRefresh} onRefresh={onRefresh}
tintColor={pal.colors.text} tintColor={pal.colors.text}
titleColor={pal.colors.text} titleColor={pal.colors.text}
progressViewOffset={headerOffset}
/> />
} }
contentContainerStyle={s.contentContainer} contentContainerStyle={s.contentContainer}
@ -178,7 +179,6 @@ export const Feed = observer(function Feed({
removeClippedSubviews={true} removeClippedSubviews={true}
contentInset={{top: headerOffset}} contentInset={{top: headerOffset}}
contentOffset={{x: 0, y: headerOffset * -1}} contentOffset={{x: 0, y: headerOffset * -1}}
progressViewOffset={headerOffset}
/> />
)} )}
</View> </View>