diff options
author | Foster <ckhofq@gmail.com> | 2024-12-04 16:42:15 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-04 21:42:15 +0000 |
commit | 0ee20731d42bd58ac6a1020615e399b01767ce2d (patch) | |
tree | c21ba87c443c8c00e19cc1636f161768d7ce37af /src/view/com/util | |
parent | 4582a9cf1f47faeaadd8a362bf8ce1ce9e017a96 (diff) | |
download | voidsky-0ee20731d42bd58ac6a1020615e399b01767ce2d.tar.zst |
adjust feed scroll bar top offset (#6940)
Co-authored-by: skipness <ckhf@proton.me>
Diffstat (limited to 'src/view/com/util')
-rw-r--r-- | src/view/com/util/List.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/com/util/List.tsx b/src/view/com/util/List.tsx index 8176d0b43..31fd0aa1d 100644 --- a/src/view/com/util/List.tsx +++ b/src/view/com/util/List.tsx @@ -151,7 +151,7 @@ let List = React.forwardRef<ListMethods, ListProps>( return ( <FlatList_INTERNAL {...props} - scrollIndicatorInsets={{right: 1}} + scrollIndicatorInsets={{top: headerOffset, right: 1}} contentOffset={contentOffset} refreshControl={refreshControl} onScroll={scrollHandler} |