Fuzzy Backgrounds
Fuzzy backgrounds allows you to use fuzzy, dynamic (fluid) backgrounds in your Flutter applications.
Features
You can choose from several types of backgrounds.
Installing
To get started, install fuzzy_backgrounds:
flutter pub add fuzzy_backgrounds
Usage
You can use different types of backgrounds in your code by including the widgets
and wrapping your content as their child property:
FuzzyCirclesBackground(
child: const Text(
'Circles Background',
style: TextStyle(
color: Colors.white,
fontSize: 22,
fontWeight: FontWeight.w600,
),
),
),
Customization
Different backgrounds offer various customization options including animation speed, colors, particle numbers and more.
For more information refer to the documentation.