creativecontainer 0.1.5 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.
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.