react-native-credit-cards
Version:
A customizable credit card form component for React Native with card flip animation and validation
16 lines (15 loc) • 429 B
TypeScript
import React from 'react';
import { ViewStyle } from 'react-native';
interface CustomFlipCardProps {
children: [React.ReactNode, React.ReactNode];
flip: boolean;
style?: ViewStyle;
duration?: number;
friction?: number;
perspective?: number;
flipHorizontal?: boolean;
flipVertical?: boolean;
useSpring?: boolean;
}
export declare const CustomFlipCard: React.FC<CustomFlipCardProps>;
export {};