flutter type 'int' is not a subtype of type 'String'问题解决

flutter type 'int' is not a subtype of type 'String'问题解决_第1张图片
在flutter中,int 类型的数据是无法自动转换成string类型的,但是,很多时候,我们电商网站都是使用Text()部件去存放int数据类型。

举个例子:以下做法是错误的。

Row(
   mainAxisAlignment:MainAxisAlignment.spaceBetween,
   crossAxisAlignment: CrossAxisAlignment.center,
  children: <Widget>[
  //错误处
  Text(_listCard

你可能感兴趣的:(futter开发问题集锦)