作者热门文章
- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
我正在使用带有脚手架的 DefaultTabController 作为子部件。对于 appBar,我使用的是 TabBar。我想在 TabBar 周围添加一些填充,但 appBar 属性需要一个扩展 PreferredSizeWidget 的类。
我正在构建的选项卡 Controller 的示例片段:
new DefaultTabController(
length: tabs.length,
child: new Scaffold(
backgroundColor: const Color(0xFFF3EEE1),
appBar: new TabBar(
tabs: tabs,
),
body: new TabBarView(
children: _testPacks.map((TestPack testPack) {
return _contentWidget(context: context, testPack: testPack);
}).toList(),
),
),
);
来自脚手架类
/// An app bar to display at the top of the scaffold.
final PreferredSizeWidget appBar;
最佳答案
现在您可以传递您的自定义填充
TabBar(
labelPadding: EdgeInsets.all(0),
关于dart - 在 DefaultTabController 中围绕 AppBar 填充,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44269295/
我正在尝试使用 DefaultTabController在一些小部件的中间。所以我的 TabBar不能在 AppBar并且必须关闭一些小部件。 所以我的问题是当我使用 TabBarView 时它崩溃了
我一直在尝试在使用 DefaultTabController 时添加监听器.但是,每次我添加一个TabController为了在 TabBar 中获取当前索引和 TabBarView ,我失去了它们之
在我的工厂的 onPressed 中,我想知道我的 DefaultTabController 中当前选择的选项卡的索引。我该怎么做? @override Widget build(BuildC
我正在使用带有脚手架的 DefaultTabController 作为子部件。对于 appBar,我使用的是 TabBar。我想在 TabBar 周围添加一些填充,但 appBar 属性需要一个扩展
我是一名优秀的程序员,十分优秀!