A component that provides flip card animation. It could be used for hide and show details of a product.
import 'package:flip_card/flip_card.dart';
Create a flip card
FlipCard(
direction: FlipDirection.HORIZONTAL, // default
front: Container(
child: Text('Front'),
),
back: Container(
child: Text('Back'),
),
);