A framework for building native apps using React
Overall
score
100%
Evaluation — 100%
↑ 1.06xAgent success when using this tile
A React Native component that displays a card with front and back faces that can be flipped with a 3D rotation animation.
@generates
import React from 'react';
import { ViewStyle } from 'react-native';
interface FlipCardProps {
/**
* Content to display on the front of the card
*/
frontContent: React.ReactNode;
/**
* Content to display on the back of the card
*/
backContent: React.ReactNode;
/**
* Whether the card is currently flipped to show the back
*/
isFlipped: boolean;
/**
* Optional style to apply to the card container
*/
style?: ViewStyle;
}
/**
* A card component that can flip between front and back faces using 3D transforms
*/
export function FlipCard(props: FlipCardProps): React.ReactElement;Provides the View component and transform styling capabilities for creating the 3D flip effect.
@satisfied-by
Install with Tessl CLI
npx tessl i tessl/npm-react-native@1000.0.0docs
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10