Flutter:动态 DropDownButton 出现错误(具有 [DropdownButton] 值的一项)

发布于 2025-01-11 10:36:02 字数 974 浏览 0 评论 0原文

我有一个下拉按钮,它从提供程序列表中获取值,如下所示:

Consumer<OrderProvider>(builder: (context, orderProv, child) {
    print(orderProv.sizeList);
    return Container(
        width: 100,
        child: DropdownButton(
            isExpanded: true,
            value: orderProv.size,
            onChanged: (val) {
                orderProv.changeSize(val);
            },
            items: orderProv
                     .sizeList
                     .map<DropdownMenuItem<String>>((e) {
                          return DropdownMenuItem<String>(
                              value: e,
                              child: Text(e),
                          );
                      }).toList()
        ),
    );
});

在第二行 print(orderProv.sizeList) 处,当我打印下拉菜单列表时,它会正确打印列表:

[S, M, L, XL]

但我收到以下错误:

应该只有一个项目具有 [DropdownButton] 的值:检测到零个或 2 个或多个具有相同值的 [DropdownMenuItem]

I have this dropdownbutton which get values from provider list as shown :

Consumer<OrderProvider>(builder: (context, orderProv, child) {
    print(orderProv.sizeList);
    return Container(
        width: 100,
        child: DropdownButton(
            isExpanded: true,
            value: orderProv.size,
            onChanged: (val) {
                orderProv.changeSize(val);
            },
            items: orderProv
                     .sizeList
                     .map<DropdownMenuItem<String>>((e) {
                          return DropdownMenuItem<String>(
                              value: e,
                              child: Text(e),
                          );
                      }).toList()
        ),
    );
});

At the second line print(orderProv.sizeList), when I print the dropdown menu list it prints the list correctly:

[S, M, L, XL]

But I receive the following error :

There should be exactly one item with [DropdownButton]'s value: Either zero or 2 or more [DropdownMenuItem]s were detected with the same value

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

掩于岁月 2025-01-18 10:36:02

提供给 DropDownButton 的值必须是 DropdownMenuItem 中的值之一。请确保 orderProv.size 指向 orderProv.sizeList 中的元素之一。

The value provided to the DropDownButton must be one of the values in the DropdownMenuItem. Please ensure that the orderProv.size points to one of the elements in the orderProv.sizeList.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文