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

Add to Cart Button with Animation and Custom Styling for Modern Shopping apps like experience.

example/lib/main.dart

import 'package:example/buttons_type/basic_button.dart';
import 'package:example/buttons_type/custom_styling.dart';
import 'package:example/buttons_type/expanding_button.dart';
import 'package:example/buttons_type/plus_button.dart';
import 'package:flutter/material.dart';

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

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
        useMaterial3: true,
      ),
      home: Scaffold(
        body: Center(
          child: Padding(
            padding: EdgeInsets.symmetric(
              horizontal: 50,
            ),
            child: Column(
              mainAxisAlignment: MainAxisAlignment.center,
              mainAxisSize: MainAxisSize.min,
              children: [
                BasicButton(),
                SizedBox(
                  height: 20,
                ),
                ExpandingButton(),
                SizedBox(
                  height: 20,
                ),
                PlusButton(),
                SizedBox(
                  height: 20,
                ),
                CustomStyling(),
              ],
            ),
          ),
        ),
      ),
    );
  }
}
17
likes
160
points
71
downloads

Documentation

API reference

Publisher

verified publisheradipt.in

Weekly Downloads

Add to Cart Button with Animation and Custom Styling for Modern Shopping apps like experience.

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

flutter

More

Packages that depend on add_to_cart_animated_button