最新消息:关注【已取消】微信公众号,可以获取全套资料,【全套Java基础27天】【JavaEE就业视频4个月】【Android就业视频4个月】

解决:Error: The argument type 'dart.core::int' can't be assigned to the parameter type 'dart.core::double'

扩展 太平洋学习网 浏览 评论

flutter出现类转换异常“Error: The argument type 'dart.core::int' can't be assigned to the parameter type 'dart.core::double'”,int类型不能转化为double类型,小编的代码如下:

new MaterialButton(
  onPressed: _incrementCounter,
  child: new Text("增加按钮"),
  color: Colors.blue,
  textColor: Colors.white,
  minWidth: 80,
  height: 20,
),

错误分析:

由于minWidth与height传入的是double类型的值,而小编给的是int类型,所以flutter无法自动转换,就报错了,错误代码如下:

lib/main.dart:114:25: Error: The argument type 'dart.core::int' can't be assigned to the parameter type 'dart.core::double'.
Try changing the type of the parameter, or casting the argument to 'dart.core::double'.
              minWidth: 80,
                        ^
lib/main.dart:115:23: Error: The argument type 'dart.core::int' can't be assigned to the parameter type 'dart.core::double'.
Try changing the type of the parameter, or casting the argument to 'dart.core::double'.
              height: 20,

解决方案:

将80与20分别改成80.0与20.0就可以自动转换double类型了,或者是如下这样使用toDouble()方法即可:

minWidth: 80.toDouble(),
height: 20.toDouble(),
来源网站:太平洋学习网,转载请注明出处:http://www.tpyyes.com/a/kuozhan/779.html
"文章很值,打赏犒劳作者一下"
微信号: Javaweb_engineer

打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,你说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

与本文相关的文章

发表我的评论
取消评论

表情

您的回复是我们的动力!

  • 昵称 (必填)

网友最新评论