zoukankan      html  css  js  c++  java
  • flutter控件之ListView滚动布局

    ListView即滚动列表控件,能将子控件组成可滚动的列表。当你需要排列的子控件超出容器大小,就需要用到滚动块。

    import 'package:flutter/material.dart';
    class ListDemo extends StatelessWidget{
      @override
      Widget build(BuildContext context) {
       return new Scaffold(
         appBar: new AppBar(
           title: new Text("滚动布局"),
         ),
         body: new ListView(
           children: <Widget>[
             new Center(
               child: new Text(
                 "Sweat",
                 style: new TextStyle(
                   fontFamily: "serif",
                   fontSize: 26.0
                 ),
               ),
             ),
             new Center(
               child: new Text(
                 "huoyac honeybaby",
                 style: new TextStyle(
                   fontFamily: "serif",
                   fontSize: 12.0
                 ),
               ),
             ),
             new Center(
               child: new Text(
                 '''
    From fairest creatures we desire increase,
    That thereby beauty's rose might never die,
    But as the riper should by time decease,
    His tender heir might bear his memory;
    But thou, contracted to thine own bright eyes,
    Feed'st thy light's flame with self-substantial fuel,
    Making a famine where abundance lies,
    Thyself thy foe, to thy sweet self too cruel.
    Thout that are now the world's fresh ornament
    And only herald to the gaudy spring,
    Within thine own bud buriest thy content
    And, tender churl, mak'st waste in niggarding.
    Pity the world, or else this glutton be,
    To eat the world's due, by the grave and thee.
    WHEN forty winters shall besiege thy brow
    And dig deep trenches in thy beauty's field,
    Thy youth's proud livery, so gazed on now,
    Will be a tottered weed of small worth held:
    Then being asked where all thy beauty lies,
    Where all the treasure of thy lusty days,
    To say within thine own deep-sunken eyes
    Were an all-eating shame and thriftless praise.
    How much more prasie deserved thy beauty's use
    If thou couldst answer, 'This fair child of mine
    Shall sum my count and make my old excuse,'
    Proving his beauty by succession thine.
    This were to be new made when thou art old
    And see thy blood warm when thou feel'st cold.
    LOOK in thy glass, and tell the face thou viewest
    Now is the time that face should form another,
    Whose fresh repair if now thou renewest,
    Thou dost beguile the world, unbless some mother.
    For where is she so fair whose uneared womb
    Disdains the tillage of thy husbandry?
    Or who is he so fond will be the tomb
    Of his self-love, to stop posterity?
    Thou art thy mother's glass, and she in thee
    Calls back the lovely April of her prime;
    So thou through windows of thine age shalt see,
    Despite of wrinkles, this thy golden time.
    But if thou live rememb'red not to be,
    Die single, and thine image dies with thee.
                 ''',
                 style: new TextStyle(
                   fontFamily: "serif",
                   fontSize: 14.0,
                 ),
               ),
             )
           ],
         ),
       );
      }
    }
    void main(){
      runApp(new MaterialApp(
        title: "滚动布局",
        home: new ListDemo(),
      ));
    }

    效果:

     

  • 相关阅读:
    JBoss+Ant实现EJB无状态会话bean实例
    Nginx简单介绍
    SVN版本号管理工具使用中常见的代码提交冲突问题的解决方法
    深入分析Java中的I/O类的特征及适用场合
    ZOJ 3689 Digging(贪心+dp)
    uva 10641 (来当雷锋的这回....)
    Java编程中“为了性能”尽量要做到的一些地方
    wikioi 1306 机智Trie树
    PE文件结构(三) 输入表
    初始化的数值(int、double等)(一)
  • 原文地址:https://www.cnblogs.com/zhujiabin/p/10130530.html
Copyright © 2011-2022 走看看