icontainer

Note- for testing purpose only. A new Flutter package project. Make beautiful container.

Getting Started

  1. Add the latest version of package to your pubspec.yaml (and rundart pub get):
dependencies:
    icontainer: ^0.0.1
2. Import the package-
 import 'package:icontainer/iacontainer.dart';

## Example
There are a number of properties that you can modify:

 - height
 - width
 - title
 - subtitle
 - gradient (color1 and color2)

 ## Ugage
 class IaContainer extends StatelessWidget {
  const IaContainer({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Center(
        child: const IaContainer(
          title: 'Hello World',
          color1: Colors.GreenAccent,
          color2: Colors.Blue,
          subtitle: 'This is a new',
        ),
      ),
    );
  }