没有为“PhosphorIcons”类型定义 getter“常规”

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

我在 Flutter、Android Studio 中遇到问题,错误如下:

没有为“PhosphorIcons”类型定义 getter“常规”。

            leading: CircleAvatar(
              backgroundColor: Colors.grey[200],
              child: Center(
                child: Icon(
                  PhosphorIcons.regular.image,
                  color: Colors.grey[500],
                ),
              ),
            ),
android flutter android-studio
1个回答
0
投票

如果你的包是phosphor_flutter,则API改为

PhosphorIconsRegular.image

API 参考:PhosphorIconsRegular

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