• Flutter之解决页面底部黄色条纹的方法


    用Flutter写页面时,有时页面内容太多,底部会出现黄色条纹。

    解决方法:在组件外增加一层ListView即可。

    如将代码:

    body: Center(
      child: Column(
        mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            Image.asset('assets/images/gameover.png', 100,height: 100,),
            Container(
              child:Text('游戏结束',style: TextStyle(
                fontSize: 40,
                color: Colors.green
                ),
              ),
              margin: const EdgeInsets.fromLTRB(10.0, 10.0, 10.0, 20.0),
            ),
            Container(
              child:Text('您的分数为:${_score}',style: TextStyle(
                fontSize: 40,
                color: Colors.green
                ),
              ),
              margin: const EdgeInsets.fromLTRB(10.0, 10.0, 10.0, 50.0),
            ),
            Container(
              child:Text('开始时间为:${_time}',style: TextStyle(
                fontSize: 40,
                color: Colors.green
                ),
              ),
              margin: const EdgeInsets.fromLTRB(10.0, 10.0, 10.0, 50.0),
            ),
            Container(
              child:Text('结束时间为:${_endTime}',style: TextStyle(
                fontSize: 40,
                color: Colors.green
                ),
              ),
              margin: const EdgeInsets.fromLTRB(10.0, 10.0, 10.0, 50.0),
            ),
            RaisedButton(
              onPressed: (){
                Navigator.pop(context,true);
              },
              textColor: Colors.white,
              clipBehavior: Clip.hardEdge,
              shape: RoundedRectangleBorder(
                borderRadius: BorderRadius.all(Radius.circular(22.0))),
                padding: const EdgeInsets.all(0.0),
                child: Container(
                   260,
                  height: 44,
                  decoration: const BoxDecoration(
                    gradient: LinearGradient(
                      colors: <Color>[
                        Color(0xff25D1D1),
                        Color(0xff3BE6AD),
                        Color(0xff20DDAA)
                      ],
                    ),
                  ),
                  padding: const EdgeInsets.all(10.0),
                  child: Container(
                    alignment: Alignment.center,
                    child: Text('重新开始游戏')),
                ),
            )
          ],
      )
    )

    改成

    body: Center(
      child: ListView(
        children:[
          Column(
            mainAxisAlignment: MainAxisAlignment.center,
              children: <Widget>[
                Image.asset('assets/images/gameover.png', 100,height: 100,),
                Container(
                  child:Text('游戏结束',style: TextStyle(
                    fontSize: 40,
                    color: Colors.green
                    ),
                  ),
                  margin: const EdgeInsets.fromLTRB(10.0, 10.0, 10.0, 20.0),
                ),
                Container(
                  child:Text('您的分数为:${_score}',style: TextStyle(
                    fontSize: 40,
                    color: Colors.green
                    ),
                  ),
                  margin: const EdgeInsets.fromLTRB(10.0, 10.0, 10.0, 50.0),
                ),
                Container(
                  child:Text('开始时间为:${_time}',style: TextStyle(
                    fontSize: 40,
                    color: Colors.green
                    ),
                  ),
                  margin: const EdgeInsets.fromLTRB(10.0, 10.0, 10.0, 50.0),
                ),
                Container(
                  child:Text('结束时间为:${_endTime}',style: TextStyle(
                    fontSize: 40,
                    color: Colors.green
                    ),
                  ),
                  margin: const EdgeInsets.fromLTRB(10.0, 10.0, 10.0, 50.0),
                ),
                RaisedButton(
                  onPressed: (){
                    Navigator.pop(context,true);
                  },
                  textColor: Colors.white,
                  clipBehavior: Clip.hardEdge,
                  shape: RoundedRectangleBorder(
                    borderRadius: BorderRadius.all(Radius.circular(22.0))),
                    padding: const EdgeInsets.all(0.0),
                    child: Container(
                       260,
                      height: 44,
                      decoration: const BoxDecoration(
                        gradient: LinearGradient(
                          colors: <Color>[
                            Color(0xff25D1D1),
                            Color(0xff3BE6AD),
                            Color(0xff20DDAA)
                          ],
                        ),
                      ),
                      padding: const EdgeInsets.all(10.0),
                      child: Container(
                        alignment: Alignment.center,
                        child: Text('重新开始游戏')),
                    ),
                )
              ],
          )
        ]
      )
    )

    效果为:

  • 相关阅读:
    NTKO Officecontrol在线Word编辑器的使用
    SQL数据类型解释
    经典SQL语句大全(网络资源共享)
    Ext.grid.GridPanel属性及方法等
    C#简易播放器(基于开源VLC)
    委托,是我委托你处理事件
    .NET面试必备(整理)
    SQL server 数据库连接方式分析
    FTP操作类的使用
    微信企业号平台开发之获取菜单,创建菜单和删除菜单
  • 原文地址:https://www.cnblogs.com/luoyihao/p/14718665.html
Copyright © 2020-2023  润新知