XEmpty constructor

const XEmpty({
  1. Key? key,
  2. String text = "暂无数据",
  3. bool showIcon = false,
  4. double size = 12,
  5. Widget? child,
  6. IconData icon = HugeIcons.strokeRoundedSecondBracketSquare,
})

Implementation

const XEmpty({
  super.key,
  this.text = "暂无数据",
  this.showIcon = false,
  this.size = 12,
  this.child,
  this.icon = HugeIcons.strokeRoundedSecondBracketSquare,
});