PqNoMoreDataView constructor

const PqNoMoreDataView({
  1. String hint = "- 已显示全部内容 -",
  2. double fontSize = 13,
  3. Color textColor = const Color(0xFFCCCCCC),
  4. Widget? child,
  5. EdgeInsetsGeometry margin = const EdgeInsets.only(top: 16, bottom: 0),
})

Implementation

const PqNoMoreDataView({
  this.hint = "- 已显示全部内容 -",
  this.fontSize = 13,
  this.textColor = const Color(0xFFCCCCCC),
  this.child,
  this.margin = const EdgeInsets.only(top: 16, bottom: 0),
});