2019年11月28日

flutter的Text,持续更新

摘要: //text的主要属性有:textAlign,maxLines,overflow等。 Text( "hello flutter!", TextAlign:TextAlign.center, maxLines:1, overflow:TextOverflow.ellipsis, // 显示不完,就在后面显示点点 style:TextStyle( fontSize:30.... 阅读全文

posted @ 2019-11-28 17:32 高彰 阅读(570) 评论(0) 推荐(0)

flutter中的=>表示什么

摘要: // =>是return语句的简写 add3(a, b) => a + b; 阅读全文

posted @ 2019-11-28 10:34 高彰 阅读(1672) 评论(0) 推荐(0)

导航