flutter_container_new 0.0.1 copy "flutter_container_new: ^0.0.1" to clipboard
flutter_container_new: ^0.0.1 copied to clipboard

outdated

A new Flutter project.

flutter_container_new #

Fancy Containers #

Fancy 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: fancy_containers: ^0.0.1

  1. Import the package and use it in your Flutter App.

import 'package:fancy_containers/fancy_containers.dart';

Example #

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

@override Widget build(BuildContext context) { return const Scaffold( backgroundColor: Colors.white, body: Center( child: FancyContainerPDas( title: 'Hello World', color1: Colors.lightGreenAccent, color2: Colors.lightBlueAccent, subTitle: 'This a Fancy Container New Package', ), ), ); } }