remove hide_vertical_scrollbars
test (#3855)
This commit is contained in:
parent
db0b030359
commit
b34d224207
5 changed files with 1 additions and 28 deletions
|
@ -2,19 +2,11 @@ import React from 'react'
|
|||
import {View} from 'react-native'
|
||||
import Animated from 'react-native-reanimated'
|
||||
|
||||
import {useGate} from 'lib/statsig/statsig'
|
||||
|
||||
export const FlatList_INTERNAL = Animated.FlatList
|
||||
export function CenteredView(props) {
|
||||
return <View {...props} />
|
||||
}
|
||||
|
||||
export function ScrollView(props) {
|
||||
const gate = useGate()
|
||||
return (
|
||||
<Animated.ScrollView
|
||||
{...props}
|
||||
showsVerticalScrollIndicator={!gate('hide_vertical_scroll_indicators')}
|
||||
/>
|
||||
)
|
||||
return <Animated.ScrollView {...props} />
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue