icontainer 0.0.1 copy "icontainer: ^0.0.1" to clipboard
icontainer: ^0.0.1 copied to clipboard

A new Flutter package project.

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',
        ),
      ),
    );
  }
0
likes
100
pub points
0%
popularity

Publisher

unverified uploader

A new Flutter package project.

Repository (GitHub)
View/report issues

Documentation

API reference

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on icontainer