3

我已经覆盖了titleSpacingAppBar 的构造函数中的。但标题空间没有区别。

new AppBar(

backgroundColor: Colors.amber,
title: new Text("Flying Dutchman",
  style: new TextStyle(
    color: const Color(0xFF444444),
    fontSize: 30.0,
    fontWeight: FontWeight.w900,
  ),
),
titleSpacing: 0.00,
centerTitle: true,
elevation: 0.0,
)

在此处输入图像描述

我希望减少应用栏标题的顶部空间。

4

2 回答 2

15

titleSpacing与实际的应用栏高度和顶部填充无关。它是水平轴上的间距。

AppBar是遵循材料规则的预样式化组件。

如果您不喜欢这些规则,请不要AppBar一开始就使用。去创建你自己的组件吧!:)

这是一个实现示例:

class MyAppbar extends StatelessWidget implements PreferredSizeWidget {
  final String title;

  const MyAppbar({this.title});

  @override
  Widget build(BuildContext context) {
    return new Container(
        color: Colors.amber,
        height: preferredSize.height,
        child: new Center(
          child: new Text(title),
        ),
      );
  }

  @override
  Size get preferredSize => const Size.fromHeight(40.0);
}
于 2018-05-08T17:59:45.583 回答
-1

只需将转换作为文本视图的根并在 nagtive 中提供 x 值。

new AppBar(

  backgroundColor: Colors.amber,
  title:new Transform(
            transform: new Matrix4.translationValues(-20.0, 0.0, 0.0),
            child: new Text("Flying Dutchman",
            style: new TextStyle(
                   color: const Color(0xFF444444),
                   fontSize: 30.0,
                   fontWeight: FontWeight.w900,
                   ),
             ),
           ),
 titleSpacing: 0.00,
 centerTitle: true,
 elevation: 0.0,
)
于 2018-11-02T08:06:38.323 回答