diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-03-20 14:53:59 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-20 14:53:59 -0500 |
commit | 4f9e9e609e7ab902e2479447a555c94b719018d8 (patch) | |
tree | 52b0580d1815b62ba2dba3fa545688cda9345a54 /src/view/com/posts/Feed.tsx | |
parent | d9ed13ea909db93a89ce31bbb506da64effc46f7 (diff) | |
download | voidsky-4f9e9e609e7ab902e2479447a555c94b719018d8.tar.zst |
* Fix dark mode rendering of 'follows you' pill * Fix the darkmode coloring of the PTR * Fix dark mode styles in dns instructions * Only lint the src dir
Diffstat (limited to 'src/view/com/posts/Feed.tsx')
-rw-r--r-- | src/view/com/posts/Feed.tsx | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/src/view/com/posts/Feed.tsx b/src/view/com/posts/Feed.tsx index c910b70e7..45cf2cc29 100644 --- a/src/view/com/posts/Feed.tsx +++ b/src/view/com/posts/Feed.tsx @@ -2,9 +2,10 @@ import React, {MutableRefObject} from 'react' import {observer} from 'mobx-react-lite' import { ActivityIndicator, - View, + RefreshControl, StyleProp, StyleSheet, + View, ViewStyle, } from 'react-native' import {CenteredView, FlatList} from '../util/Views' @@ -16,6 +17,7 @@ import {FeedSlice} from './FeedSlice' import {OnScrollCb} from 'lib/hooks/useOnMainScroll' import {s} from 'lib/styles' import {useAnalytics} from 'lib/analytics' +import {usePalette} from 'lib/hooks/usePalette' const HEADER_ITEM = {_reactKey: '__header__'} const EMPTY_FEED_ITEM = {_reactKey: '__empty__'} @@ -42,6 +44,7 @@ export const Feed = observer(function Feed({ testID?: string headerOffset?: number }) { + const pal = usePalette('default') const {track} = useAnalytics() const [isRefreshing, setIsRefreshing] = React.useState(false) @@ -134,10 +137,16 @@ export const Feed = observer(function Feed({ keyExtractor={item => item._reactKey} renderItem={renderItem} ListFooterComponent={FeedFooter} - refreshing={isRefreshing} + refreshControl={ + <RefreshControl + refreshing={isRefreshing} + onRefresh={onRefresh} + tintColor={pal.colors.text} + titleColor={pal.colors.text} + /> + } contentContainerStyle={s.contentContainer} onScroll={onScroll} - onRefresh={onRefresh} onEndReached={onEndReached} onEndReachedThreshold={0.6} removeClippedSubviews={true} |