Documentation
Tabs

Tabs

A set of layered sections of content—known as tab entries—that are displayed one at a time.

Usage

FTabs(...)

FTabs(
  initialIndex: 1,
  tabs: const [
    FTabEntry(label: Text('Account'), content: Placeholder()),
    FTabEntry(label: Text('Password'), content: Placeholder()),
  ],
  onPress: (index) {},
);