A flutter flip card

admin

flip_card

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'),
    ),
); 

Credit (github url) : https://github.com/fedeoo/flip_card

Next Article : https://flutterappdev.com/2019/01/26/flutter-code-input-mobile-app-development-easy/

Leave a Comment