zoukankan      html  css  js  c++  java
  • wrap

    import 'package:flutter/material.dart';
    
    void main() {
      runApp(MaterialApp(home: new MyApp()));
    }
    
    
    class MyApp extends StatelessWidget {
      var width = 80.0;
      var height = 60.0;
    
      @override
      Widget build(BuildContext context) {
        // TODO: implement build
        return Wrap(
          spacing: 8.0, // 主轴(水平)方向间距
          runSpacing: 4.0, // 纵轴(垂直)方向间距
          alignment: WrapAlignment.center, //沿主轴方向居中
          children: <Widget>[
            Container(height: 50,  50,color: Colors.red,),
            Container(height: 50,  50,color: Colors.white,),
            Container(height: 50,  50,color: Colors.white10,),
            Container(height: 50,  50,color: Colors.redAccent,),
            Container(height: 50,  50,color: Colors.amber,),
            Container(height: 50,  50,color: Colors.amberAccent,),
            Container(height: 50,  50,color: Colors.grey,),
            Container(height: 50,  50,color: Colors.brown,),
            Container(height: 50,  50,color: Colors.black,),
            Container(height: 50,  50,color: Colors.grey,),
            Container(height: 50,  50,color: Colors.green,),
            Container(height: 50,  50,color: Colors.red,),
            Container(height: 50,  50,color: Colors.white10,),
            Container(height: 50,  50,color: Colors.lightBlue,),
            Container(height: 50,  50,color: Colors.redAccent,),
            Container(height: 50,  50,color: Colors.red,),
            Container(height: 50,  50,color: Colors.green,),
            Container(height: 50,  50,color: Colors.grey,),
            Container(height: 50,  50,color: Colors.brown,),
            Container(height: 50,  50,color: Colors.red,),
    
          ],
        );
      }
    }
    

      

  • 相关阅读:
    使用Intent传递类对象
    C#中关于类的序列化
    Android 中使用内存监测工具Heap,及内存分析工具 MAT
    Android Framework 记录之一
    Android 2.3发短信详细流程
    AIDL原理解析
    eclipse 快捷键
    什么时候加上android.intent.category.DEFAULT和LAUNCHER
    Monkey测试简介
    Phone状态的监听机制
  • 原文地址:https://www.cnblogs.com/pythonClub/p/10571026.html
Copyright © 2011-2022 走看看