gpt4 book ai didi

dart - 在 DefaultTabController 中围绕 AppBar 填充

转载 作者:IT王子 更新时间:2023-10-29 07:01:22 26 4
gpt4 key购买 nike

我正在使用带有脚手架的 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/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com