Last updated:
0 purchases
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
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.