Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

add scrollbars back on android (#8529)

authored by

Samuel Newman and committed by
GitHub
eb18b6a4 3eaa2d9d

+4 -4
+4 -4
src/view/com/util/List.tsx
··· 1 1 import React, {memo} from 'react' 2 - import {RefreshControl, ViewToken} from 'react-native' 2 + import {RefreshControl, type ViewToken} from 'react-native' 3 3 import { 4 - FlatListPropsWithLayout, 4 + type FlatListPropsWithLayout, 5 5 runOnJS, 6 6 useSharedValue, 7 7 } from 'react-native-reanimated' ··· 11 11 import {useDedupe} from '#/lib/hooks/useDedupe' 12 12 import {useScrollHandlers} from '#/lib/ScrollContext' 13 13 import {addStyle} from '#/lib/styles' 14 - import {isAndroid, isIOS} from '#/platform/detection' 14 + import {isIOS} from '#/platform/detection' 15 15 import {useLightbox} from '#/state/lightbox' 16 16 import {useTheme} from '#/alf' 17 17 import {FlatList_INTERNAL} from './Views' ··· 152 152 153 153 return ( 154 154 <FlatList_INTERNAL 155 - showsVerticalScrollIndicator={!isAndroid} // overridable 155 + showsVerticalScrollIndicator // overridable 156 156 onViewableItemsChanged={onViewableItemsChanged} 157 157 viewabilityConfig={viewabilityConfig} 158 158 {...props}