DialogCustom.body constructor

const DialogCustom.body({
  1. Key? key,
  2. double? height,
  3. int margin = 0,
  4. Color? color,
  5. Decoration? decoration,
  6. List<Widget>? children,
  7. EdgeInsetsGeometry? rootMargin,
})

只有中间可以滑动的部分

Implementation

const DialogCustom.body({
  Key? key,
  this.height,
  this.margin = 0,
  this.color,
  this.decoration,
  this.children,
  this.rootMargin,
})  : name = null,
      operate = null,
      isBody = true,
      super(key: key);