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