-
Notifications
You must be signed in to change notification settings - Fork 29.1k
Closed
Description
I want to have tabBar
as the topmost widget in the Scaffold
but with no appBar
and have elevation to the tabBar
.
I dont want to have that empty space above tabBar
because of appBar
title. And also move the tab
in tabBar
to left/start alignment.
new Scaffold(
appBar: new AppBar(
bottom: new TabBar(
isScrollable: true,
unselectedLabelColor: Colors.grey,
indicatorColor: Colors.black54,
tabs: <Tab>[
new Tab(
text: "Featured",
),
new Tab(
text: "Popular",
),
],
controller: _tabController,
),
title: null,
),
);
ninest and androidovshchik
Metadata
Metadata
Assignees
Labels
No labels