flutter_animated_cards 0.0.2 copy "flutter_animated_cards: ^0.0.2" to clipboard
flutter_animated_cards: ^0.0.2 copied to clipboard

A Fully customizable animated cards widget that has feature of 3D animation and much more. This widget works on both Android & iOS.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'model/city_model.dart';

import 'package:flutter_animated_cards/flutter_animated_cards.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Animated 3D Cards',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      debugShowCheckedModeBanner: false,
      home: SimpleCardDemo(),
    );
  }
}

class SimpleCardDemo extends StatefulWidget {
  @override
  _SimpleCardDemoState createState() => _SimpleCardDemoState();
}

class _SimpleCardDemoState extends State<SimpleCardDemo> {
  late List<CardModel> _cardList;
  late CardModel _cardModel;

  @override
  void initState() {
    var data = CardData();
    _cardList = data.getCardList();
    _cardModel = _cardList[1];

    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
        appBar: AppBar(
          title: Text("Animated 3D Cards"),
        ),
        body: Center(
          child: FlutterAnimatedCards(
            list: _cardList,
            model: _cardModel,
          ),
        ));
  }
}

class FullyCustomizedCards extends StatefulWidget {
  @override
  _FullyCustomizedCardsState createState() => _FullyCustomizedCardsState();
}

class _FullyCustomizedCardsState extends State<FullyCustomizedCards> {
  late List<CardModel> _cardList;
  late CardModel _cardModel;

  @override
  void initState() {
    var data = CardData();
    _cardList = data.getCardList();
    _cardModel = _cardList[1];

    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
        appBar: AppBar(
          title: Text("Animated 3D Cards"),
        ),
        body: Center(
          child: FlutterAnimatedCards(
            /// required
            list: _cardList,

            /// required
            model: _cardModel,

            /// either use this one
            cardWithSingleColor: Color(0xffdee5cf),

            /// or this one
            cardWithGradientColors: [
              Color(0xfffff060),
              Color(0xFFD5D2D2),
              Color(0xFFfbc7d4)
            ],

            /// set it false if you don't want 3D rotation
            isRotatingCards: true,

            /// change it according to your design
            cardHeight: 200,

            /// change it according to your design
            cardWidth: 170,

            moreText: 'Set any text here',
            onMoreBtnPressed: () {
              /// write a code that takes you to the detail page of this card
            },
          ),
        )

        /// bottomSheet: SlideUpBar(),
        );
  }
}
40
likes
90
pub points
51%
popularity

Publisher

verified publisherfaizafarooquidev.blogspot.com

A Fully customizable animated cards widget that has feature of 3D animation and much more. This widget works on both Android & iOS.

Repository (GitHub)
View/report issues

Documentation

API reference

License

Apache-2.0 (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_animated_cards