flutter flipcard
a flutter 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
flip_card(
direction: flipdirection.horizontal, // default
front: container(
child: text('front'),
),
back: container(
child: text('back'),
),
);
Comments are closed.