flutter 错误“font-weight”无效:无

问题描述 投票:0回答:1
E/flutter ( 4610): [ERROR:flutter/runtime/dart_vm_initializer.cc(41)] Unhandled Exception: Bad state: Invalid "font-weight": none
E/flutter ( 4610): #0      SvgParser.parseFontWeight (package:vector_graphics_compiler/src/svg/parser.dart:1327:5)
E/flutter ( 4610): #1      SvgParser._createSvgAttributes (package:vector_graphics_compiler/src/svg/parser.dart:1691:21)

当我在 flutter_svg 小部件中加载 svg 图像 url 时显示此错误

android flutter svg
1个回答
0
投票

不要在代码中将“font-weight”设置为“none”,而是使用正确的枚举值,如果你想去除字体粗细效果,可以不设置“font-weight”属性并让它使用默认值。

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