react-native-actions-sheet
Version:
A Cross Platform(Android & iOS) ActionSheet with a robust and flexible api, native performance and zero dependency code for react native. Create anything you want inside ActionSheet.
16 lines • 621 B
TypeScript
import React from 'react';
import { FlatList as RNGHFlatList } from 'react-native-gesture-handler';
import { FlatListProps } from 'react-native';
type Props<T = any> = FlatListProps<T> & React.RefAttributes<RNGHFlatList> & {
/**
* By default refresh control gesture will work in top 15% area of the ScrollView. You can set a different value here.
*
* Accepts a value between 0-1.
*/
refreshControlGestureArea?: number;
};
export declare const FlatList: <T = any>(props: Props<T> & {
ref?: React.Ref<RNGHFlatList>;
}) => React.ReactElement;
export {};
//# sourceMappingURL=FlatList.d.ts.map