build method
Describes the part of the UI represented by this widget.
Implementation
@override
Widget build(BuildContext context) {
return Row(
gap: gap,
children: [for (var i = 0; i < tabs.length; i++) _tabButton(tabs[i], i)],
);
}
Describes the part of the UI represented by this widget.
@override
Widget build(BuildContext context) {
return Row(
gap: gap,
children: [for (var i = 0; i < tabs.length; i++) _tabButton(tabs[i], i)],
);
}