ProAnimatedBlur - Flutter Package [Public]
A simple usage like the built-in AnimatedContainer or AnimatedOpacity widgets.
![ProAnimatedBlur - Flutter Package [Public]](/_next/image?url=https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1653502545783%2F3SSmNQRfm.png&w=3840&q=75)
ProAnimatedBlur
- pub.dev page: https://pub.dev/packages/pro_animated_blur

ProAnimatedBlur is a Flutter package that is very similar to other 'Animated' widgets such as AnimatedContainer, AnimatedOpacity, etc. *
Animates between different blur properties without needing a dedicated animation controller because it is auto-handled*
It blurs the background of the child widget.
Some usecases:
- When a modal (popup window) is used, wrap the route with ProAnimatedBlur in order to blur the rest of the screen (you can blur the dark shaded dismissible barrier area)
- Wrap any of your containers to make a frosted glass style.
Getting started
Add the dependency in pubspec.yaml:
dependencies:
pro_animated_blur: ^0.0.2+1
# It is recommended to use latest version.
Import it:
Now in your Dart code, you can use:
import 'package:pro_animated_blur/pro_animated_blur.dart';
Usage
return Container(
clipBehavior: Clip.antiAlias, // Use a clip option.
child: ProAnimatedBlur(
blur: _isBlurred ? 20 : 0,
duration: Duration(milliseconds: 200),
curve: Curves.linear,
child: Container(
height: 200,
width: 200,
),
),
);


![ProFinancialCharts: A new Flutter package! [Currently private]](/_next/image?url=https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1653406438768%2FwE2ZoJ8xS.png&w=3840&q=75)
![ProDatagrid: A new Flutter package! [Currently private]](/_next/image?url=https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1653396864318%2FYQYoiJVd3.png&w=3840&q=75)
![Sensei Sudoku! [Flutter Game, Now Available on AppStore]](/_next/image?url=https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1652707936880%2FkpdqcyeSp.png&w=3840&q=75)
