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

Custom Container.

Installation #

  1. add the package to your pubspec.yaml
dependencies:
    cool_custom_container: ^0.0.1
  1. Import the package and use it in your flutter app
import 'package:cool_custom_container/cool_custom_container.dart';

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,
                )
            )
        );
    }

}
2
likes
120
pub points
0%
popularity

Publisher

unverified uploader

Custom Container.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSL-1.0 (license)

Dependencies

flutter

More

Packages that depend on cool_custom_container