mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
1import React from 'react'
2import {View} from 'react-native'
3import Animated from 'react-native-reanimated'
4
5import {useGate} from 'lib/statsig/statsig'
6
7export const FlatList_INTERNAL = Animated.FlatList
8export function CenteredView(props) {
9 return <View {...props} />
10}
11
12export function ScrollView(props) {
13 const gate = useGate()
14 return (
15 <Animated.ScrollView
16 {...props}
17 showsVerticalScrollIndicator={!gate('hide_vertical_scroll_indicators')}
18 />
19 )
20}