customflipcard 0.0.4 copy "customflipcard: ^0.0.4" to clipboard
customflipcard: ^0.0.4 copied to clipboard

discontinued
outdated

A new custom flip card is a widget, that can be fliped to right on tap and viceversa.This widget is still is in beta version.

example/main.dart

// Flutter code sample for Card

// This sample shows creation of a [Card] widget that shows album information
// and two actions.

import 'package:flutter/material.dart';
import 'package:customflipcard/customflipcard.dart';

void main() => runApp(MyApp());

/// This Widget is the main application widget.
class MyApp extends StatelessWidget {
  static const String _title = 'Flutter Code Sample';

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: _title,
      home: Scaffold(
        appBar: AppBar(title: const Text(_title)),
        body: MyStatelessWidget(),
      ),
    );
  }
}

/// This is the stateless widget that the main application instantiates.
class MyStatelessWidget extends StatelessWidget {
  MyStatelessWidget({Key key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return Center(
      child: Card(
        child: Column(
          mainAxisSize: MainAxisSize.min,
          children: <Widget>[
            CustomFlipCardWidget(),
          ],
        ),
      ),
    );
  }
}
2
likes
0
pub points
0%
popularity

Publisher

unverified uploader

A new custom flip card is a widget, that can be fliped to right on tap and viceversa.This widget is still is in beta version.

Homepage

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on customflipcard