react-native-segmented-control-2
Version:
🚀 React Native Segmented Control, Pure Javascript for iOS and Android
18 lines (17 loc) • 603 B
TypeScript
import React from "react";
import { StyleProp, ViewStyle, TextStyle } from "react-native";
interface SegmentedControlProps {
tabs: any[];
initialIndex?: number;
activeTextColor?: string;
activeTabColor?: string;
gap?: number;
style?: StyleProp<ViewStyle>;
tabStyle?: StyleProp<ViewStyle> | ((index: number) => StyleProp<ViewStyle>);
textStyle?: StyleProp<TextStyle>;
selectedTabStyle?: StyleProp<ViewStyle>;
onChange: (index: number) => void;
value?: number;
}
declare const SegmentedControl: React.FC<SegmentedControlProps>;
export default SegmentedControl;