colorful_container_v1

Creator: coderz1093

Last updated:

0 purchases

colorful_container_v1 Image
colorful_container_v1 Images

Languages

Categories

Add to Cart

Description:

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

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.