flutter_animated_cart

动画页面库。

Fancy Gif

入门

添加插件 (pub 即将推出)

dependencies:
  ...
  flutter_animated_cart: ^0.0.1

基本用法

添加小部件

  @override
  Widget build(BuildContext context) {
    return AnimatedCartScaffold(
                    mainPage: HomePage(), // Your HomePage class
                    mainPageColor: Colors.white, // put your Homepage color
                    cartPage: CartPage(),  // Your cart page class
                    cartImage: Image.asset( "lib/res/images/cart.png", width: 25, height: 25),
                    menuImage: GestureDetector(
                                           onTap: () => {}, // menuIcon click
                                           child: const Icon(Icons.menu_sharp,size: 25),
                                         ), 
                    titleWidget: const Text( "Home", // Main page toolbat title
                           style: TextStyle(fontSize: 23, fontWeight: FontWeight.bold),
                         ),
                );
  }

GitHub

查看 Github