Flutter added stretchModes properties in FlexibleSpaceBar which allows us to zoom or blur the image when user tries to scroll below minimum limit.
flexibleSpace: FlexibleSpaceBar(
flexibleSpace: BackgroundFlexibleSpaceBar(
stretchModes: const [
StretchMode.zoomBackground,
StretchMode.blurBackground,
StretchMode.fadeTitle,
],
)
I think it is nice to have this in this library.
Flutter added stretchModes properties in FlexibleSpaceBar which allows us to zoom or blur the image when user tries to scroll below minimum limit.
I think it is nice to have this in this library.