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

Libraries

animated_gradient