diff options
author | Eric Bailey <git@esb.lol> | 2023-12-19 12:32:17 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-19 10:32:17 -0800 |
commit | e87065f04227b0f9859b034c3c71679f52e63689 (patch) | |
tree | 42366ad13a4259c9a54245a543de57fc1ac87ee4 /src | |
parent | c00c5efb341c8899d479bbb529e9c71eac046395 (diff) | |
download | voidsky-e87065f04227b0f9859b034c3c71679f52e63689.tar.zst |
Try to fix scroll indicator on Feeds page (#2245)
* Try to fix scroll indicator on Feeds page * Apply to List
Diffstat (limited to 'src')
-rw-r--r-- | src/view/com/util/List.tsx | 1 | ||||
-rw-r--r-- | src/view/screens/Feeds.tsx | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/view/com/util/List.tsx b/src/view/com/util/List.tsx index 5947fe87a..2acc3f4b3 100644 --- a/src/view/com/util/List.tsx +++ b/src/view/com/util/List.tsx @@ -52,6 +52,7 @@ function ListImpl<ItemT>( return ( <FlatList_INTERNAL {...props} + scrollIndicatorInsets={{right: 1}} onScroll={scrollHandler} scrollEventThrottle={1} ref={ref} diff --git a/src/view/screens/Feeds.tsx b/src/view/screens/Feeds.tsx index d2d0aafb8..1c8bdf9f0 100644 --- a/src/view/screens/Feeds.tsx +++ b/src/view/screens/Feeds.tsx @@ -499,6 +499,7 @@ export function FeedsScreen(_props: Props) { onEndReached={onEndReached} // @ts-ignore our .web version only -prf desktopFixedHeight + scrollIndicatorInsets={{right: 1}} /> {hasSession && ( |