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

retractedoutdated

Fancy Containers Flutter Package

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

              },
        ),
      ),
    );
  }
}
2
likes
0
points
13
downloads

Publisher

verified publishersagarkoju5.com.np

Weekly Downloads

Fancy Containers Flutter Package

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on fancy_border_containers