nice_looking_gradient_containers

Last updated:

0 purchases

nice_looking_gradient_containers Image
nice_looking_gradient_containers Images
Add to Cart

Description:

nice looking gradient containers

NiceContainers #

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

dependencies:
nice_containers: ^0.0.1
copied to clipboard

Import the package and use it in your Flutter App.

import 'package:nice_containers/nice_containers.dart';
copied to clipboard
Features #
Modify your Container !
class MainPage extends StatefulWidget {
const MainPage({super.key});

@override
State<MainPage> createState() => _MainPageState();
}

class _MainPageState extends State<MainPage> {
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: NiceContainers(
text: 'Hello',

color1: 'your color',
color2: 'your color'
)
)
);
}
}

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.