nice_looking_gradient_containers 0.0.4 copy "nice_looking_gradient_containers: ^0.0.4" to clipboard
nice_looking_gradient_containers: ^0.0.4 copied to clipboard

Flutter Container package

NiceContainers #

  1. Add the latest version of package to your pubspec.yaml (and rundart pub get):
dependencies:
  nice_containers: ^0.0.1
  1. Import the package and use it in your Flutter App.
import 'package:nice_containers/nice_containers.dart';

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'
        )
      )
    );
  }
}

2
likes
120
points
40
downloads

Publisher

unverified uploader

Weekly Downloads

Flutter Container package

Homepage

Documentation

API reference

License

MIT (license)

Dependencies

flutter, flutter_screenutil

More

Packages that depend on nice_looking_gradient_containers