WxAnchorThemeData constructor

const WxAnchorThemeData({
  1. Curve curve = Curves.linear,
  2. Duration duration = const Duration(milliseconds: 150),
  3. TargetPlatform platform = TargetPlatform.android,
  4. WxAnchorStyle style = const WxAnchorStyle(),
  5. bool overlay = true,
  6. bool feedback = true,
  7. bool focusable = true,
  8. bool disabled = false,
  9. MouseCursor? mouseCursor,
})

Creates a theme data that can be used for WxAnchorTheme.

Implementation

const WxAnchorThemeData({
  this.curve = Curves.linear,
  this.duration = const Duration(milliseconds: 150),
  this.platform = TargetPlatform.android,
  this.style = const WxAnchorStyle(),
  this.overlay = true,
  this.feedback = true,
  this.focusable = true,
  this.disabled = false,
  this.mouseCursor,
});