在Flutter中为showDatePicker添加标题

时间:2019-11-13 17:03:13

标签: flutter

我到处都在寻找一种方法,可以在触发showDatePicker时向出现的模式中添加一些文本,但是没有任何运气。我不想替换显示日期的文本,而是在其上方添加文本。有谁知道如何做到这一点? this is the modal that appears

1 个答案:

答案 0 :(得分:0)

我不认为可以使用DatePicker的公共api来完成您想要的事情。

我建议将DatePicker的代码复制到您的项目中,然后对其进行编辑以实现所需的功能。

第139行

    return Container(
      padding: padding,
      color: backgroundColor,
      child: Column(
        mainAxisAlignment: mainAxisAlignment,
        crossAxisAlignment: CrossAxisAlignment.start,
        children: <Widget>[
          yearButton,
          dayButton,
          Text('your text'),
        ],
      ),
    );

结果:

the result