UNPKG

rn-inkpad

Version:

<img src="https://res.cloudinary.com/fercloudinary/image/upload/v1715452841/packages/inkpad-banner_acl0xl.png" />

20 lines (17 loc) 426 B
import {StyleProp, TextStyle, ViewStyle} from 'react-native'; export type SegmentedControlProps = { values: value[]; onChange: (value: string) => void; label?: string; labelStyle?: StyleProp<TextStyle>; selectedIndex?: number; backgroundColor?: string; tintColor?: string; textColor?: string; selectedTextColor?: string; style?: StyleProp<ViewStyle>; }; type value = { key: string; value: string; };