TxTip constructor

const TxTip(
  1. String? data, {
  2. Key? key,
  3. Widget? icon,
  4. EdgeInsetsGeometry? margin,
  5. EdgeInsetsGeometry? padding,
  6. Color? backgroundColor,
  7. Color? foregroundColor,
  8. TextStyle? textStyle,
  9. BorderRadius? borderRadius,
  10. VisualDensity? visualDensity,
  11. VoidCallback? onClose,
})

创建一个提示小组件

data不能为null

Implementation

const TxTip(
  this.data, {
  super.key,
  this.icon,
  this.margin,
  this.padding,
  this.backgroundColor,
  this.foregroundColor,
  this.textStyle,
  this.borderRadius,
  this.visualDensity,
  this.onClose,
}) : textSpan = null;