0 purchases
cool custom container
Installation #
add the package to your pubspec.yaml
dependencies:
cool_custom_container: ^0.0.1
copied to clipboard
Import the package and use it in your flutter app
import 'package:cool_custom_container/cool_custom_container.dart';
copied to clipboard
Example #
You can customize miltiple properties
class CustomScreen extends StatelessWidget {
CustomScreen({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: const CustomContainer(
title: "Hello World",
color1: Colors.green,
color2: Colors.blue,
)
)
);
}
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.