FloatingFit<T> constructor
const
FloatingFit<T>({ - Key? key,
- required Widget itemBuilder(
- T data
),
- required Widget overlayBuilder(
- T data
),
- required T primary,
- required T panel,
- bool fit = false,
- Rx<Rect?>? intersection,
- void onManipulated(
- bool
)?,
- void onSwapped(
- T,
- 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,
});