Tabs
A set of layered sections of content—known as tab entries—that are displayed one at a time.
Preview
Usage
FTabs(...)
FTabs(
initialIndex: 1,
onPress: (index) {},
children: const [
FTabEntry(label: Text('Account'), child: Placeholder()),
FTabEntry(label: Text('Password'), child: Placeholder()),
],
);
Last updated on