import React from "react";
import {
Platform,
ScrollView as RNScrollView,
ScrollViewProps,
} from "react-native";
import Animated from "react-native-reanimated";
import { SceneComponent } from "../scene";
const AnimatePageView =
Platform.OS === "web"
? RNScrollView
: Animated.createAnimatedComponent(RNScrollView);
export type TabScrollViewProps = ScrollViewProps & {
index: number;
};
function ScrollView(props: TabScrollViewProps, ref: any) {
return (
);
}
export const TabScrollView = React.forwardRef(ScrollView) as (
props: TabScrollViewProps & {
ref?: React.Ref;
}
) => React.ReactElement;