flutter widget flip view
this is a flutter widget base on pure dart code that provides 3d flip card visuals.
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'),
),
)
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.
Comments are closed.