0 purchases
creativecontainer
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.
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),
),
),
),
),
),
);
}
}
copied to clipboard
Additional information #
Package will have more Creative Containers in Future. Enjoy this for now.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.