UNPKG

@eslam-elmeniawy/react-native-common-components

Version:

Common `ReactNative` components packed in library for usage in projects.

14 lines (10 loc) 390 B
// External imports. import type { KeyboardAwareScrollViewProps } from 'react-native-keyboard-controller'; // Types imports. import type { MD2Theme, MD3Theme } from 'react-native-paper'; export type Props = KeyboardAwareScrollViewProps & { refreshing?: boolean; onRefresh?: () => void; refreshColor?: string; }; export type PropsWithTheme = Props & { theme: MD2Theme | MD3Theme };