This can be used to apply the custom widgets in your app

Features

This package do is that it provide custom widgets to enhance your UI and can modify it yourself

Getting started

Import the package and then use the props to modify your widgets.

Usage

class FirstPackage extends StatelessWidget{
  const FirstPackage({super.key}) : super(key : key);
  
  @override
  Widget build (BuildContext context){
    return Scaffold(
        body: Center(
         child: const FirstPackage(
           title: "Hello World",
           color1: Colors.blue,
           color2: Colors.red, 
           subTitle: "This is the subPackage"
         ) 
        )
    );
  }
}

Additional information

Import the package and then use it.

Libraries

firstpackage