随着flutter hotui的发布和不断的更新,很久没有写flutter了,很多都需要重新看,适应了一天才缓过神来,自己也觉得更有记下笔记的必要,这样可以加深印象和提高开发效率。不多说了,方法很多种 第一种使用button添加image child 不是很好,比较麻烦,最后找到比较好的方案
new Container(
width: 100,
height: 100,
margin: EdgeInsets.fromLTRB(0, 64.0, 0, 0),
child: InkWell(
onTap:loginAction,
child: Image(image:AssetImage("assets/login.png"),fit: BoxFit.fill)
)
)