creativecontainer 0.1.5 copy "creativecontainer: ^0.1.5" to clipboard
creativecontainer: ^0.1.5 copied to clipboard

Flutter Creative Containers have varieties of animated containers.

Flutter Creative Containers is a versatile and dynamic Flutter package designed to enhance your UI development experience by offering a wide array of creative containers. With an emphasis on aesthetics and functionality, this package empowers Flutter developers to craft visually stunning and engaging user interfaces with ease.

Getting started #

Presenting you with a Creative Container with rotating borders.

CreativeContainer

https://github.com/aviral2910/Creative-Container/assets/42781310/e2b94a96-efdb-4cb9-a7f8-33b2d99f41fb

Usage #

class CreativeScreen extends StatefulWidget {
  const CreativeScreen({super.key});

  @override
  State<CreativeScreen> createState() => _CreativeScreenState();
}

class _CreativeScreenState extends State<CreativeScreen> {
  @override
  Widget build(BuildContext context) {
    double h = MediaQuery.of(context).size.height;
    double w = MediaQuery.of(context).size.width;
    return Scaffold(
      body: Container(
        color: Color.fromARGB(255, 16, 20, 35),
        height: h,
        width: w,
        child: Center(
          child: CreativeContainer(
            height: 200,
            width: 200,
            borderThickness: 5,
            child: const Center(
              child: Text(
                "Creative Container",
                style: TextStyle(color: Colors.white),
              ),
            ),
          ),
        ),
      ),
    );
  }
}

Additional information #

Package will have more Creative Containers in Future. Enjoy this for now.

0
likes
130
pub points
0%
popularity
screenshot

Publisher

verified publisheraviraldixit.in

Flutter Creative Containers have varieties of animated containers.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

flutter

More

Packages that depend on creativecontainer