Flip_card
Flip cards are a great tool that allows you to present your audience with a card, or series of cards, that they can flip over by simply clicking or tapping to reveal the content on the other side of the card.
With its own creative way that brings strong inspiration to design, it will bring a very special and impressive experience to users.

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'),
),
);
GitHub
https://github.com/fedeoo/flip_card