AntdFloatingPanel constructor

const AntdFloatingPanel({
  1. Key? key,
  2. AntdFloatingPanelStyle? style,
  3. AntdStyleBuilder<AntdFloatingPanelStyle, AntdFloatingPanel>? styleBuilder,
  4. required Widget child,
  5. Widget? content,
  6. List<double>? anchors,
  7. Widget? indicator,
  8. AntdFloatingPanelHeightCallback? onHeightChange,
  9. AntdFloatingPanelPosition position = AntdFloatingPanelPosition.bottom,
})

Implementation

const AntdFloatingPanel(
    {super.key,
    super.style,
    super.styleBuilder,
    required this.child,
    this.content,
    this.anchors,
    this.indicator,
    this.onHeightChange,
    this.position = AntdFloatingPanelPosition.bottom});