Demo project for self test

Features

none

Getting started

none

Usage

null

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",
          color1: Colors.green,
          color2: Colors.red,
          subtitle: "World"
        )
      )
    );
  }
}

Additional information

null