FloatingFit<T> constructor

const FloatingFit<T>({
  1. Key? key,
  2. required Widget itemBuilder(
    1. T data
    ),
  3. required Widget overlayBuilder(
    1. T data
    ),
  4. required T primary,
  5. required T panel,
  6. bool fit = false,
  7. Rx<Rect?>? intersection,
  8. void onManipulated(
    1. bool
    )?,
  9. void onSwapped(
    1. T,
    2. T
    )?,
})

Implementation

const FloatingFit({
  super.key,
  required this.itemBuilder,
  required this.overlayBuilder,
  required this.primary,
  required this.panel,
  this.fit = false,
  this.intersection,
  this.onManipulated,
  this.onSwapped,
});