UNPKG

react-native-ui-lib

Version:

<p align="center"> <img src="https://user-images.githubusercontent.com/1780255/105469025-56759000-5ca0-11eb-993d-3568c1fd54f4.png" height="250px" style="display:block"/> </p> <p align="center">UI Toolset & Components Library for React Native</p> <p a

37 lines (36 loc) 906 B
import React from 'react'; import { TextStyle } from 'react-native'; import { WheelPickerProps } from '../../incubator'; export declare type SectionsWheelPickerProps = { /** * Array of sections. */ sections?: WheelPickerProps[]; /** * Describe the height of each item in the WheelPicker * default value: 44 */ itemHeight?: number; /** * Describe the number of rows visible * default value: 5 */ numberOfVisibleRows?: number; /** * Text color for the focused row */ activeTextColor?: string; /** * Text color for other, non-focused rows */ inactiveTextColor?: string; /** * Row text style */ textStyle?: TextStyle; testID?: string; }; declare const _default: React.ComponentClass<SectionsWheelPickerProps & { useCustomTheme?: boolean | undefined; }, any>; export default _default;