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
11
likes
140
pub points
78%
popularity

Publisher

unverified uploader

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

Repository (GitHub)
View/report issues

Documentation

API reference

License

GPL-3.0 (LICENSE)

Dependencies

flutter

More

Packages that depend on animated_gradient