ExpandingFloatingSearchBarTransition constructor

ExpandingFloatingSearchBarTransition({
  1. double innerElevation = 8,
  2. Widget? divider,
})

Creates a FloatingSearchBarTransition which expands to eventually fill all of its available space, similar to the ones in Gmail or Google Maps.

An example of this can be viewed here:

Implementation

ExpandingFloatingSearchBarTransition({
  this.innerElevation = 8,
  this.divider,
});