加入收藏 | 设为首页 | 会员中心 | 我要投稿 河北网 (https://www.hebeiwang.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 建站 > 正文

为前端工程师筹备的Flutter入门指南

发布时间:2019-01-22 10:53:23 所属栏目:建站 来源:佚名
导读:假如你刚好是一名前端工程师,且对 Flutter 抱有乐趣,那么真的是太好了,这篇文章完全就是为你筹备的。写惯了 HTML、CSS 与 JavaScript,要不要来是试试 Dart?假如你不认识 Flutter 但仍对其感乐趣,可以先看看「让我们在2019年从头熟悉 Flutter」一文相识

Web

  1. <div class="greybox"> 
  2.   <div class="redbox"> 
  3.     Lorem ipsum dolor sit amet, consec etur 
  4.   </div> 
  5. </div> 
  6.  
  7. .greybox { 
  8.   background-color: #e0e0e0; /* grey 300 */ 
  9.   width: 320px; 
  10.   height: 240px; 
  11.   font: 900 24px Roboto; 
  12.   display: flex; 
  13.   align-items: center; 
  14.   justify-content: center; 
  15. .redbox { 
  16.   background-color: #ef5350; /* red 400 */ 
  17.   padding: 16px; 
  18.   color: #ffffff; 
  19.   overflow: hidden; 
  20.   text-overflow: ellipsis; 
  21.   white-space: nowrap;  

Dart

  1. var container = Container( // grey box 
  2.   child: Center( 
  3.     child: Container( // red box 
  4.       child: Text( 
  5.         "Lorem ipsum dolor sit amet, consec etur", 
  6.         style: bold24Roboto, 
  7.         overflow: TextOverflow.ellipsis, 
  8.         maxLines: 1,  
  9.       ), 
  10.       decoration: BoxDecoration( 
  11.         backgroundColor: Colors.red[400], 
  12.       ), 
  13.       padding: EdgeInsets.all(16.0), 
  14.     ), 
  15.   ), 
  16.   width: 320.0, 
  17.   height: 240.0, 
  18.   color: Colors.grey[300], 
  19. ); 

Teaser 截图自 flutter.io 官网。

【编辑保举】

  1. JetBrains 2018 中国开拓者生态陈诉:Java 最风行
  2. 高效开拓 Dubbo?用 Spring Boot 可得劲!
  3. 措施员的快速开拓框架:Github上10大优越的开源靠山节制面板
  4. 【开拓必看】你真的相识回流和重绘吗?
  5. 本月 Firefox 65 将插手 Flexbox Inspector 开拓者器材
【责任编辑:未丽燕 TEL:(010)68476606】
点赞 0

(编辑:河北网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

热点阅读