animated_gradient 0.0.3 copy "animated_gradient: ^0.0.3" to clipboard
animated_gradient: ^0.0.3 copied to clipboard

plugin to create animated gradient background with muliple color in flutter project

Animated Gradient #

Animated gradient package lets you add a beautiful randomly moving gradient to your Flutter app.

Installation #

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

Features #

class MyApp extends StatelessWidget {  
  const MyApp({Key? key}) : super(key: key);  
  
  @override  
  Widget build(BuildContext context) {  
    return Scaffold(  
      body: AnimatedGradient(  
        child: const Text("Done!",
          style : TextStyle(
            color: Colors.white,
            fontSize: 50,
            fontWeight: FontWeight.w700,
          ),
        ),  
      ),  
    );  
  }  
}
animated gradient app demo
25
likes
160
points
2.06k
downloads

Publisher

verified publisherbibeksaha.in

Weekly Downloads

plugin to create animated gradient background with muliple color in flutter project

Repository (GitHub)

Documentation

API reference

License

GPL-3.0 (license)

Dependencies

flutter

More

Packages that depend on animated_gradient