0 purchases
colorful container v1
This is the package of colorful gradiant container which helps to get less time consuming for users
Features #
hieght
width
title
subtitle
gradiant(color1 and color2)
Getting started #
flutter pub add colorful_container
copied to clipboard
class MyHomePage extends StatelessWidget {
const MyHomePage({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Colorful Container'),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: const [
ColorfulContainer(
hieght: 150,
title: 'hello',
textColor: Colors.white,
subtitle: 'this is subtitle',
subtitleColor: Colors.white,
color1: Colors.amberAccent,
)
],
),
),
);
}
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.