fancy_border_containers 0.0.3 copy "fancy_border_containers: ^0.0.3" to clipboard
fancy_border_containers: ^0.0.3 copied to clipboard

Fancy Containers Flutter Package

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: () {

              },
        ),
      ),
    );
  }
}
1
likes
140
pub points
0%
popularity

Publisher

unverified uploader

Fancy Containers Flutter Package

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter

More

Packages that depend on fancy_border_containers