container_made 0.0.2 copy "container_made: ^0.0.2" to clipboard
container_made: ^0.0.2 copied to clipboard

it provide already made container where you can add two color as gradient color, title, subtitle.

description : it provide already made container where you can add two color as gradient color, title, subtitle.

Features #

in project there is customs made container where you just have to add same details.dart pub publish

already made Containers #

custom container package lets you add a beautiful gradient container to your Flutter app.

Installation #

  1. Add the latest version of package to your pubspec.yaml (and rundart pub get):
dependencies:
  container_made : ^0.0.1
  1. Import the package and use it in your Flutter App.
import 'package: containers_made/containers_made.dart';

Example #

There are a number of properties that you can modify:

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

Getting started #

start when ever you want to use custom container

Usage #

there is already example in there


class uniqueContainer extends StatelessWidget {
  const uniqueContainer({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return const Scaffold(
        body: Center(
          child: ContainerMade(
            title: 'Hello World',
            subtitle: "This is new Package",
            color1: Colors.white,
            color2: Colors.black,
          ),
        ));
  }
}

Next Goals #

  • Add onTap for functions. Now, you can specify the onTap and specify a function.

  • Change font and color style for text. Change color by specifying textcolor and subtitlecolor properties.

  • Add more containers to the package.

1
likes
120
pub points
0%
popularity

Publisher

unverified uploader

it provide already made container where you can add two color as gradient color, title, subtitle.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter

More

Packages that depend on container_made