wave_animation 1.0.0
wave_animation: ^1.0.0 copied to clipboard
A customizable wave animation widget for Flutter with null-safe options.
Wave Animation #
A customizable wave animation widget for Flutter.
Features #
- Multiple wave patterns
- Fully null-safe
- Customizable colors, amplitude, speed, height
Usage #
import 'package:wave_animation/wave_animation.dart';
WaveWidget(
height: 200,
gradientColors1: [Colors.blue, Colors.lightBlueAccent],
gradientColors2: [Colors.purple, Colors.pinkAccent],
speed: 0.8,
pattern: WaveMotionPattern.flowField,
);