hi every body this package hellps you to make a nice box design

Features

just add box colorful

Getting started

TODO: List prerequisites and provide or point to information on how to start using the package.

Usage

Include short and useful examples for package users. Add longer examples to /example folder.

class _MyHomePageState extends State<MyHomePage> implements DoCartOperationInterface {
  ColorFulBox? colorfulWidget;

  SizedBox videoRenderers() =>
      SizedBox(
          child: colorfulWidget = ColorFulBox(doCartOperationInterface: this));

  @override
  void addToCartButtonClicked(int productId) {
    /*
    do long operation
     */
    /*
    after long operation completed invoke doOperation
     */
    colorfulWidget?.doOperation(LiveOperations.AddProductToCart, productId);
  }

  @override
  void removeProductFromCartButtonClicked(int productId) {
  }
}

Additional information

Tell users more about the package: where to find more information, how to contribute to the package, how to file issues, what response they can expect from the package authors, and more.

Libraries

colorfulbox