cool_custom_container

Creator: coderz1093

Last updated:

0 purchases

cool_custom_container Image
cool_custom_container Images

Languages

Categories

Add to Cart

Description:

cool custom container

Installation #

add the package to your pubspec.yaml

dependencies:
cool_custom_container: ^0.0.1
copied to clipboard

Import the package and use it in your flutter app

import 'package:cool_custom_container/cool_custom_container.dart';
copied to clipboard
Example #
You can customize miltiple properties
class CustomScreen extends StatelessWidget {
CustomScreen({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: const CustomContainer(
title: "Hello World",
color1: Colors.green,
color2: Colors.blue,
)
)
);
}

}
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.