TxTipThemeData constructor

const TxTipThemeData({
  1. TextStyle? textStyle,
  2. Color? backgroundColor,
  3. Color? foregroundColor,
  4. EdgeInsetsGeometry? padding,
  5. BorderRadius? borderRadius,
  6. VisualDensity? visualDensity,
})

创建可用于 ThemeData.extension<TxTipThemeData>() 的主题。

Implementation

const TxTipThemeData({
  this.textStyle,
  this.backgroundColor,
  this.foregroundColor,
  this.padding,
  this.borderRadius,
  this.visualDensity,
});