CustomActionPane constructor

const CustomActionPane({
  1. required List<Widget> children,
  2. Widget? motion,
  3. Key? key,
  4. double extentRatio = 0.3,
  5. Widget? dismissible,
  6. bool dragDismissible = true,
  7. double? openThreshold,
  8. double? closeThreshold,
})

动作面板

Implementation

const CustomActionPane({
  required this.children,
  this.motion,
  super.key,
  this.extentRatio = 0.3,
  this.dismissible,
  this.dragDismissible = true,
  this.openThreshold,
  this.closeThreshold,
});