TODO: this is test package.

Features

TODO: this is test package.

Getting started

TODO: this is test package.

Usage

TODO: this is test package.

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

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

Additional information

TODO: for testing package .

Libraries

my_first_pac