命名参数'pickerTitle'是必需的,但没有相应的参数

问题描述 投票:0回答:1

出了什么问题?

未定义命名参数“title”。如何将名称更正为现有命名参数的名称,或定义名称为“title”的命名参数。

我该怎么做 我必须在脚本中更改什么?

flutter firebase dart android-studio
1个回答
0
投票

您需要使用

pickerTitle
属性,该属性将采用包含标题的
Text
小部件,例如:

BottomPicker.dateTime(
    pickerTitle: Text(
        'Set the event exact time and date',
        style: TextStyle(
          fontWeight: FontWeight.bold,
          fontSize: 15,
          color: Colors.black,
        ),
      ),
      onSubmit: (date) {
        print(date);
      },
      onClose: () {
        print('Picker closed');
      },
      minDateTime: DateTime(2021, 5, 1),
      maxDateTime: DateTime(2021, 8, 2),
      initialDateTime: DateTime(2021, 5, 1),
      gradientColors: [
        Color(0xfffdcbf1),
        Color(0xffe6dee9),
      ],
).show(context);

供参考:https://pub.dev/packages/bottom_picker

© www.soinside.com 2019 - 2024. All rights reserved.