cupertino_sidebar 1.0.1 cupertino_sidebar: ^1.0.1 copied to clipboard
Brings iOS-style sidebars and floating tab bars to Flutter, providing a sleek, native feel for iPadOS-style navigation in your app.
Cupertino Sidebar #
cupertino_sidebar brings iOS-style sidebars and floating tab bars to Flutter, providing a sleek, native feel for iPadOS-style navigation in your app.
Features #
Cupertino Sidebar #
A iOS-style sidebar that can be used to navigate through your app.
Cupertino Floating Tab Bar #
A iPadOS-style floating tab bar that can also be used to navigate through your app.
📖 Usage #
Sidebar #
The CupertinoSidebar
works very similar to Flutter's NavigationDrawer. It accepts a list of destinations, a selected index, and a callback function triggered when a destination is tapped.
CupertinoSidebar(
selectedIndex: _selectedIndex,
onDestinationSelected: (value) {
setState(() {
// Update the selected index when a destination is selected.
_selectedIndex = value;
});
},
children: [
// index 0
SidebarDestination(
icon: Icon(CupertinoIcons.home),
label: Text('Home'),
),
// index 1
SidebarDestination(
icon: Icon(CupertinoIcons.person),
label: Text('Items'),
),
// index 2
SidebarDestination(
icon: Icon(CupertinoIcons.search),
label: Text('Search'),
),
],
);
CupertinoSidebar also supports expandable sections, allowing you to group destinations.
...
children: [
...
SidebarSection(
label: Text('My section'),
children: [
SidebarDestination(
icon: Icon(CupertinoIcons.settings),
label: Text('Settings'),
),
...
],
),
]
For a full example, see the Sidebar example.
Floating Tab Bar #
The CupertinoFloatingTabBar
is managed by a TabController, with options to add tabs and specify a callback function.
CupertinoFloatingTabBar(
onDestinationSelected: (value) {},
controller: _myTabController,
tabs: const [
CupertinoFloatingTab(
child: Text('Today'),
),
CupertinoFloatingTab(
child: Text('Library'),
),
CupertinoFloatingTab.icon(
icon: Icon(CupertinoIcons.search),
),
],
)
For a full example, see the Tab Bar example.
Additional examples #
📅 Roadmap #
This package is actively being developed. Planned features include:
- Tab bar to sidebar transition
- Adaptive scaffold that switches between a sidebar and a floating tab bar and a bottom tab bar depending on the screen size.
🤝 Contributing #
Contributions are welcome! Feel free to submit issues, ideas, or pull requests. Together, we can make cupertino_sidebar even better!