跳到主內容

asset_not_string

資源必須是檔案路徑(字串)。

描述

#

assets 列表包含非字串值時,分析器會生成此診斷訊息。

示例

#

以下程式碼會生成此診斷訊息,因為 assets 列表包含一個 map

yaml
name: example
flutter:
  assets:
    - image.gif: true

常見修復方法

#

修改 assets 列表,使其只包含有效的 POSIX 風格檔案路徑

yaml
name: example
flutter:
  assets:
    - assets/image.gif