如何在AppBar上换行

时间:2019-05-21 17:25:36

标签: dart flutter flutter-layout

我在应用程序上添加了子应用栏。如何在不减小字体大小的情况下查看应用栏上的所有文本?

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: submitRequestAppBar(context),
      body: Scaffold(
          appBar:
      PreferredSize(
      preferredSize: Size.fromHeight(40.0),
          child:
          AppBar(
            backgroundColor: Colors.grey[350],
            leading: Container(),
            title: Text(
              widget.title,
              textAlign: TextAlign.left,
              style: TextStyle(
                  fontWeight: FontWeight.bold,
                  color: Colors.black,
                  fontSize: 15.0),
            ),
          ),
      ),

enter image description here

1 个答案:

答案 0 :(得分:0)

您可以创建滚动动画以显示不适合屏幕的文本。您可以使用this widget 字幕 )。它是开源的,因此,如果您想贡献您的力量,可以将其派生并创建一个拉取请求from here.

它只是包裹着您,不在乎设计。然后,您应该查看solution on SO.