SFTab constructor
const
SFTab({
- Key? key,
- Color? focusedColor,
- double? width,
- required double height,
- Color? backgroundColor,
- Color? borderColor,
- BorderSide? borderBottom,
- double borderWidth = 4.0,
- required dynamic onTap()?,
- ScrollPhysics? physics,
Implementation
const SFTab(
{super.key,
required this.menu,
this.focusedColor,
this.width,
required this.height,
this.backgroundColor,
this.borderColor,
this.borderBottom,
this.borderWidth = 4.0,
required this.onTap,
this.physics,
this.menuTextStyle});