This website collects cookies to deliver better user experience
dart pub get
dependencies: fancy_containers: ^0.0.4
import 'package:fancy_containers/fancy_containers.dart';
@override Widget build(BuildContext context) { return Scaffold( body: Center( child: FancyContainer( onTap: (){ print("Hello World"); }, color1: Colors.lightGreenAccent, color2: Colors.lightBlue, title: 'Hello World', textcolor: Colors.white, subtitle: 'This is a new package', subtitlecolor: Colors.white, ), ), );
44
0