Reputation: 5069
How can I add TabBar to SliverAppBar in Flutter? So far when I add a bottom
to SliverAppBar, title
gets pinned to those tabs, while I want it to be above those tabs.
Any ideas?
My code:
class _MyHomePageState extends State<MyHomePage> with SingleTickerProviderStateMixin{
TabController controller;
@override
void initState() {
super.initState();
controller = new TabController(length: 3, vsync: this);
}
@override
Widget build(BuildContext context) {
return new Scaffold(
body: new CustomScrollView(
slivers: <Widget>[
new SliverAppBar(
pinned: true,
flexibleSpace: new FlexibleSpaceBar(
title: new Text("Some title"),
),
expandedHeight: 160.0,
bottom: new TabBar(tabs: [
new Tab(text: 'Tab 1'),
new Tab(text: 'Tab 2'),
new Tab(text: 'Tab 3'),
],
controller: controller,
),
),
new SliverList(
delegate: new SliverChildBuilderDelegate(
(context, idx) {
return new ListTile(
title: new Text("$idx"),
);
},
childCount: 20,
),
),
],
),
);
}
}
Upvotes: 17
Views: 30431
Reputation:
This works for me so well. I think this may help you
NestedScrollView(
headerSliverBuilder: (context, innerBoxIsScrolled) => [
SliverAppBar(
backgroundColor: AppColors.appbarColor,
snap: false,
pinned: true,
floating: true, //this make the work done.
title: const Text(
'WhatsApp',
style: TextStyle(
fontSize: 24,
fontWeight: FontWeight.w500,
color: Colors.white,
),
),
actions: const [
IconButton(
onPressed: null,
icon: Icon(
Icons.search_outlined,
color: Colors.white,
size: 24,
),
),
IconButton(
onPressed: null,
icon: Icon(
Icons.more_vert,
color: Colors.white,
size: 24,
),
),
],
bottom: TabBar(
controller: _tabController,
indicatorColor: Colors.white,
indicatorWeight: 3.0,
tabs: TabBarItem.tabList.map((tab) => tab).toList(),
),
),
],
body: TabBarView(
controller: _tabController,
children: const [
Text('camera'),
ChatsScreen(),
Text('camera'),
Text('camera'),
],
),
),
Upvotes: -1
Reputation: 87
class Menu extends StatelessWidget {
@override
Widget build(BuildContext context) {
return DefaultTabController(
length: 2,
child: SafeArea(
child: Scaffold(
body: Consumer<MenuBlock>(
builder: (context, appController, child) {
return CustomScrollView(
slivers: <Widget>[
SliverAppBar(
floating: true,
pinned: false,
snap: true,
forceElevated: true,
elevation: 1,
expandedHeight: 50.0,
title: Text('TITLE'),
actions: <Widget>[
IconButton(
icon: const Icon(Icons.add_circle),
tooltip: 'Add new entry',
onPressed: () {/* ... */},
),
],
bottom: TabBar(
tabs: [
Tab(text: "TAB1"),
Tab(text: "TAB2"),
],
),
),
SliverList(
delegate: SliverChildListDelegate(
<Widget>[
Container(
// or SizedBox, etc.
height: 4200,
child: TabBarView(
children: [
),
),
],
),
),
],
);
}),
),
),
);
}
}
Upvotes: 1
Reputation: 31
You can use titlePadding for padding:
SliverAppBar(
pinned: true,
expandedHeight: 250,
primary: true,
forceElevated: true,
flexibleSpace: FlexibleSpaceBar(
titlePadding: EdgeInsets.only(bottom: 62),
title: Text(data.name),
centerTitle: true,
background: data.logo != null
? Padding(
padding: const EdgeInsets.only(bottom: 46),
child: Container(
color: Colors.black,
),
)
: null,
),
bottom: TabBar(
tabs: [
Tab(text: "Tab1"),
Tab(text: "Tab2"),
Tab(text: "Tab3"),
Tab(text: "Tab4"),
],
),
),
Upvotes: 1
Reputation: 103351
I had the same problem weeks ago and I could solve using SliverAppBar
, FlexibleSpaceBar
and SliverPersistentHeader
.
Check my code
@override
Widget build(BuildContext context) {
return Scaffold(
body: DefaultTabController(
length: 2,
child: NestedScrollView(
headerSliverBuilder: (BuildContext context, bool innerBoxIsScrolled) {
return <Widget>[
SliverAppBar(
expandedHeight: 200.0,
floating: false,
pinned: true,
flexibleSpace: FlexibleSpaceBar(
centerTitle: true,
title: Text("Collapsing Toolbar",
style: TextStyle(
color: Colors.white,
fontSize: 16.0,
)),
background: Image.network(
"https://images.pexels.com/photos/396547/pexels-photo-396547.jpeg?auto=compress&cs=tinysrgb&h=350",
fit: BoxFit.cover,
)),
),
SliverPersistentHeader(
delegate: _SliverAppBarDelegate(
TabBar(
labelColor: Colors.black87,
unselectedLabelColor: Colors.grey,
tabs: [
Tab(icon: Icon(Icons.info), text: "Tab 1"),
Tab(icon: Icon(Icons.lightbulb_outline), text: "Tab 2"),
],
),
),
pinned: true,
),
];
},
body: Center(
child: Text("Sample text"),
),
),
),
);
}
And this is the implementation of SliverPersistentHeader
class _SliverAppBarDelegate extends SliverPersistentHeaderDelegate {
_SliverAppBarDelegate(this._tabBar);
final TabBar _tabBar;
@override
double get minExtent => _tabBar.preferredSize.height;
@override
double get maxExtent => _tabBar.preferredSize.height;
@override
Widget build(
BuildContext context, double shrinkOffset, bool overlapsContent) {
return new Container(
child: _tabBar,
);
}
@override
bool shouldRebuild(_SliverAppBarDelegate oldDelegate) {
return false;
}
}
I wrote a post about it if you want to check :
https://medium.com/@diegoveloper/flutter-collapsing-toolbar-sliver-app-bar-14b858e87abe
Upvotes: 60
Reputation: 4859
FlexibleSpaceBar is stacked behind the toolbar and the tabbar. https://docs.flutter.io/flutter/material/SliverAppBar/flexibleSpace.html
You should put your title in SilverAppBar:title not in flexibleSpace.
In your code replace
flexibleSpace: new FlexibleSpaceBar(
title: new Text("Some title"),
),
with
title: new Text("Some title"),
Upvotes: 4