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

    效果:

     

  • 相关阅读:
    Shiro 集成Spring 使用 redis时 使用redisTemplate替代jedisPool(五)
    shiro 实现 网站登录记住我功能 学习记录(四)
    magento2根据属性id或code来添加options
    微信小程序-注册程序app.js
    微信小程序-目录结构
    如何在最新的PHP 7.1.0上安装和运行最新的Magento 2.1.3
    添加新的php版本到wamp中
    全局使用php
    PHP设计模式之单例模式
    SourceTree使用
  • 原文地址:https://www.cnblogs.com/zhujiabin/p/10130530.html
Copyright © 2011-2022 走看看