marcos930807 / awesomeDialogs

A new Flutter package project for simple a awesome dialogs
Other
339 stars 110 forks source link

How to blur barrier background like ios #112

Open nguyenthao1988 opened 1 year ago

mandrake99 commented 1 year ago

on the Show method, i made the following local changes to the library to create that effect,

import 'dart:ui' show ImageFilter;

transitionBuilder: ( BuildContext context, Animation animation, Animation secondaryAnimation, Widget child, ) => BackdropFilter( filter: ImageFilter.blur( sigmaX: 4 animation.value, sigmaY: 4 animation.value), child: _showAnimation(animation, secondaryAnimation, child)),

nguyenthao1988 commented 1 year ago

Thanks for sharing.

marcos930807 commented 1 year ago

i will add this behavior in next releases.

nguyenthao1988 commented 1 year ago

Thank @marcos930807 . Your lib is awesome