timsneath / flutter_flip_view

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

flutter_flip_view

This is a flutter Widget base on pure Dart code that provides 3D flip card visuals.

simplecard

customlayout

Get start

add package in your pubspec.yaml

dependencies:
   flutter_flip_view: ^latest_version

This is a simple usage

import 'package:flutter_flip_view/flutter_flip_view.dart';

FlipView(
  animationController: _curvedAnimation,
  front: Container(
    width: 300,
    height: 500,
    color: Colors.amber,
    alignment: Alignment.center,
    child: Text('Front'),
  ),
  back: Container(
    width: 300,
    height: 500,
    color: Colors.blueGrey,
    alignment: Alignment.center,
    child: Text('Back'),
  ),
)

You can get more usage case in main.dart and custom_layout_example.dart

Getting Started

This project is a starting point for a Flutter plug-in package, a specialized package that includes platform-specific implementation code for Android and/or iOS.

For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.

About

License:BSD 2-Clause "Simplified" License


Languages

Language:Dart 87.8%Language:Shell 4.0%Language:Swift 3.5%Language:Kotlin 2.9%Language:HTML 1.5%Language:Objective-C 0.3%