fancy_border_containers

Last updated:

0 purchases

fancy_border_containers Image
fancy_border_containers Images
Add to Cart

Description:

fancy border containers

Fancy Border Containers #
Fancy Borders Containers package lets you add a beautiful gradient container to your Flutter app.
Installation #

Add the latest version of package to your pubspec.yaml (and rundart pub get):

dependencies:
fancy_borders_containers: ^0.0.3
copied to clipboard

Import the package and use it in your Flutter App.

import 'package:fancy_borders_containers/fancy_borders_containers.dart';
copied to clipboard
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: () {

},
),
),
);
}
}
copied to clipboard

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.