flip_card 0.2.2
flip_card: ^0.2.2 copied to clipboard
A component that provides flip card animation. It could be used for hide and show details of a product.
flip_card #
A component that provides flip card animation. It could be used for hide and show details of a product.
How to use #
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'),
),
);