CustomUnderlineTabIndicator constructor

const CustomUnderlineTabIndicator({
  1. Gradient? gradient,
  2. EdgeInsetsGeometry insets = EdgeInsets.zero,
  3. BorderSide borderSide = const BorderSide(width: 2.0, color: Colors.white),
})

Create an underline style selected tab indicator.

The borderSide and insets arguments must not be null.

Implementation

const CustomUnderlineTabIndicator({
  this.gradient,
  this.insets = EdgeInsets.zero,
  this.borderSide = const BorderSide(width: 2.0, color: Colors.white),
});