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,),
    
          ],
        );
      }
    }
    

      

  • 相关阅读:
    Markdown语法帮助文档
    react-native-vector-icons使用方法
    如何创建Pull Request,以开源项目ant design pro为例
    4.环境变量总结篇
    3.Flutter之hello_world
    构建之法 阅读笔记03
    学习进度14
    团队项目-个人博客6.5
    团队项目-个人博客6.4
    构建之法 阅读笔记02
  • 原文地址:https://www.cnblogs.com/pythonClub/p/10571026.html
Copyright © 2011-2022 走看看