CustomWidthUnderlineTabIndicator constructor

const CustomWidthUnderlineTabIndicator({
  1. double width = 24,
  2. BorderSide borderSide = const BorderSide(width: 2.0, color: Colors.white),
  3. EdgeInsetsGeometry insets = EdgeInsets.zero,
})

Create an underline style selected tab indicator.

The borderSide and insets arguments must not be null.

Implementation

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