0 purchases
colorfulbox
hi every body this package hellps you to make a nice box design
Features #
just add box colorful
Getting started #
add following script tag in index.html file under web path
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 liveStreamAddToCart(int productId) {
/*
do long operation
*/
/*
after long operation completed invoke doOperation
*/
colorfulWidget?.doOperation(LiveStreamOperation.addedLiveStreamProductToCart, productId);
}
@override
void liveStreamGoToCheckout(int productId) {
}
@override
void liveStreamRemoveFromCart(int productId) {
}
@override
void removeProductFromCartButtonClicked(int productId) {
}
}
copied to clipboard
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.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.