flutter_animated_cart 0.0.1 copy "flutter_animated_cart: ^0.0.1" to clipboard
flutter_animated_cart: ^0.0.1 copied to clipboard

A new Flutter animted cart page package.

flutter_animated_cart #

Animated page library.

Fancy Gif

Getting Started #

Add the plugin (pub coming soon):

dependencies:
  ...
  flutter_animated_cart: ^0.0.1

Basic Usage #

Adding the widget

  @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),
                         ),
                );
  }
0
likes
50
points
14
downloads

Publisher

unverified uploader

Weekly Downloads

A new Flutter animted cart page package.

Repository (GitHub)
View/report issues

Documentation

API reference

License

unknown (license)

Dependencies

flutter

More

Packages that depend on flutter_animated_cart