tabBuilder property

Widget Function(BuildContext context, TTab<T> tab, bool isSelected, VoidCallback? onTap)? tabBuilder
final

Custom builder for tab widgets. When provided, this builder is used instead of the default tab rendering. Receives the context, tab, whether it's selected, and the onTap callback. The builder should handle its own Material/InkWell for interaction.

Implementation

final Widget Function(BuildContext context, TTab<T> tab, bool isSelected, VoidCallback? onTap)? tabBuilder;