Fancy Border Containers

Fancy Borders Containers 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_borders_containers: ^0.0.3
  1. Import the package and use it in your Flutter App.
import 'package:fancy_borders_containers/fancy_borders_containers.dart';

Example

There are a number of properties that you can modify:

  • padding
  • title
  • isActive
  • onChange

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

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Center(
        child: const ContainerBorder(
          title: 'Hello World',
          padding: EdgeInsect.all(10),
          isActive: true,
          onChange: () {

              },
        ),
      ),
    );
  }
}