设为首页 - 加入收藏 ASP站长网(Aspzz.Cn)- 科技、建站、经验、云计算、5G、大数据,站长网!
热搜: 重新 试卷 文件
当前位置: 首页 > 运营中心 > 建站资源 > 优化 > 正文

为前端工程师准备的Flutter入门指南(9)

发布时间:2019-01-22 05:32 所属栏目:21 来源:佚名
导读:Web divclass=greybox divclass=redbox Loremipsumdolorsitamet,consecetur /div /div .greybox{ background-color:#e0e0e0;/*grey300*/ width:320px; height:240px; font:90024pxRoboto; display:flex; align-item

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

(编辑:ASP站长网)

网友评论
推荐文章
    热点阅读